blob: dedc9cbdde50105406b5962a7be7bbec3d14d090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'postrunner/FlexiTable'
describe PostRunner::FlexiTable do
it 'should create a simple ASCII table' do
t = PostRunner::FlexiTable.new do
row(%w( a bb ))
row(%w( ccc ddddd ))
end
puts t.to_s
end
end
|