mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-12 21:13:47 -05:00
Improved table.vim tests. Fixed #24.
This commit is contained in:
@@ -34,4 +34,25 @@ describe 'tablemode'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'Tableize'
|
||||
before
|
||||
new
|
||||
read t/fixtures/tableize.txt
|
||||
end
|
||||
|
||||
it 'should tableize with default delimiter'
|
||||
:2,3call tablemode#TableizeRange('')
|
||||
Expect tablemode#table#IsATableRow(2) to_be_true
|
||||
Expect tablemode#spreadsheet#RowCount(2) == 2
|
||||
Expect tablemode#spreadsheet#ColumnCount(2) == 3
|
||||
end
|
||||
|
||||
it 'should tableize with given delimiter'
|
||||
:2,3call tablemode#TableizeRange('/;')
|
||||
Expect tablemode#table#IsATableRow(2) to_be_true
|
||||
Expect tablemode#spreadsheet#RowCount(2) == 2
|
||||
Expect tablemode#spreadsheet#ColumnCount(2) == 2
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user