mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-13 05:23:46 -05:00
Include the header when deleting columns
This commit is contained in:
9
t/fixtures/complex_header.txt
Normal file
9
t/fixtures/complex_header.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
|----------+----------+----------+----------|
|
||||
| counting | backward | alphabet | backward |
|
||||
|:========:+:=========+=========:+==========|
|
||||
| 1 | 9 | a | z |
|
||||
| 2 | 8 | b | y |
|
||||
| 3 | 7 | c | x |
|
||||
| 4 | 6 | d | w |
|
||||
| 5 | 5 | e | v |
|
||||
|----------+----------+----------+----------|
|
||||
@@ -102,7 +102,31 @@ describe 'spreadsheet'
|
||||
Expect tablemode#spreadsheet#ColumnCount('.') == 1
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
describe 'Manipulation of tables with headers'
|
||||
before
|
||||
new
|
||||
normal! ggdG
|
||||
let g:table_mode_header_fillchar = '='
|
||||
read t/fixtures/complex_header.txt
|
||||
call cursor(4, 7)
|
||||
end
|
||||
|
||||
it 'should successfully delete a row '
|
||||
Expect tablemode#spreadsheet#RowCount('.') == 5
|
||||
call tablemode#spreadsheet#DeleteRow()
|
||||
Expect tablemode#spreadsheet#RowCount('.') == 4
|
||||
Expect getline(4) == '| 2 | 8 | b | y |'
|
||||
end
|
||||
|
||||
it 'should successfully delete a column'
|
||||
Expect tablemode#spreadsheet#ColumnCount('.') == 4
|
||||
call tablemode#spreadsheet#DeleteColumn()
|
||||
Expect tablemode#spreadsheet#ColumnCount('.') == 3
|
||||
Expect getline(4) == '| 9 | a | z |'
|
||||
end
|
||||
end
|
||||
|
||||
describe 'Repeated Manipulations'
|
||||
before
|
||||
new
|
||||
|
||||
Reference in New Issue
Block a user