diff options
Diffstat (limited to 'vim/bundle/vim-table-mode/t/tablemode.vim')
m--------- | vim/bundle/vim-table-mode | 0 | ||||
-rw-r--r-- | vim/bundle/vim-table-mode/t/tablemode.vim | 56 |
2 files changed, 0 insertions, 56 deletions
diff --git a/vim/bundle/vim-table-mode b/vim/bundle/vim-table-mode new file mode 160000 +Subproject b613e39bd08ecebdb9b18100dae518050f49604 diff --git a/vim/bundle/vim-table-mode/t/tablemode.vim b/vim/bundle/vim-table-mode/t/tablemode.vim deleted file mode 100644 index 132c4bb..0000000 --- a/vim/bundle/vim-table-mode/t/tablemode.vim +++ /dev/null @@ -1,56 +0,0 @@ -" vim: fdm=indent -source t/config/options.vim - -describe 'tablemode' - describe 'Activation' - describe 'tablemode#Enable()' - before - call tablemode#Enable() - end - - it 'should enable table mode' - Expect b:table_mode_active to_be_true - end - end - - describe 'tablemode#Disable()' - before - call tablemode#Disable() - end - - it 'should disable table mode' - Expect b:table_mode_active to_be_false - end - end - - describe 'tablemode#Toggle()' - it 'should toggle table mode' - call tablemode#Toggle() - Expect b:table_mode_active to_be_true - call tablemode#Toggle() - Expect b:table_mode_active to_be_false - 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#IsRow(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#IsRow(2) to_be_true - Expect tablemode#spreadsheet#RowCount(2) == 2 - Expect tablemode#spreadsheet#ColumnCount(2) == 2 - end - end -end |