diff options
author | Karel Kočí <cynerd@email.cz> | 2016-06-30 16:11:56 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-06-30 16:11:56 +0200 |
commit | 9931e0888b2419326ae10ebbfae532261c5c125f (patch) | |
tree | 7504be5daccbb7b7d1ea396754de47b11ed790e5 /vim/bundle/lightline.vim/test/tabs.vim | |
parent | e573b3020c032400eed60b649a2cbf55266e6bb0 (diff) | |
download | myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.gz myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.bz2 myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.zip |
Fix submodules
Diffstat (limited to 'vim/bundle/lightline.vim/test/tabs.vim')
m--------- | vim/bundle/lightline.vim | 0 | ||||
-rw-r--r-- | vim/bundle/lightline.vim/test/tabs.vim | 99 |
2 files changed, 0 insertions, 99 deletions
diff --git a/vim/bundle/lightline.vim b/vim/bundle/lightline.vim new file mode 160000 +Subproject 430ce2cb063b39a0c7950cafd617e333acb6759 diff --git a/vim/bundle/lightline.vim/test/tabs.vim b/vim/bundle/lightline.vim/test/tabs.vim deleted file mode 100644 index 92c2c08..0000000 --- a/vim/bundle/lightline.vim/test/tabs.vim +++ /dev/null @@ -1,99 +0,0 @@ -let s:suite = themis#suite('tabs') -let s:assert = themis#helper('assert') - -function! s:suite.before_each() - let g:lightline = { 'winwidth': 180 } - call lightline#init() - tabnew - tabonly -endfunction - -function! s:tab(number, ...) abort - let active = get(a:000, 0, 0) - let last = get(a:000, 1, 0) - return '%' . a:number . 'T%{lightline#onetab(' . a:number . ',' . active . ')}' . (last ? '%T' : '') -endfunction - -function! s:suite.tabs() - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1, 1)], []]) -endfunction - -function! s:suite.tabnew() - tabnew - call s:assert.equals(lightline#tabs(), [[s:tab(1)], [s:tab(2, 1, 1)], []]) -endfunction - -function! s:suite.tabnew_tabnew() - tabnew - tabnew - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2)], [s:tab(3, 1, 1)], []]) -endfunction - -function! s:suite.tabnew_tabfirst() - tabnew - tabfirst - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1)], [s:tab(2, 0, 1)]]) -endfunction - -function! s:suite.tabnew_tabnew_tabfirst() - tabnew - tabnew - tabfirst - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1)], [s:tab(2), s:tab(3, 0, 1)]]) -endfunction - -function! s:suite.tabnew_tabnew_tabprevious() - tabnew - tabnew - tabprevious - call s:assert.equals(lightline#tabs(), [[s:tab(1)], [s:tab(2, 1)], [s:tab(3, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20() - for i in range(19) - tabnew - endfor - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), s:tab(3), s:tab(4), '...', s:tab(16), s:tab(17), s:tab(18), s:tab(19)], [s:tab(20, 1, 1)], []]) -endfunction - -function! s:suite.tabnew_20_tabfirst() - for i in range(19) - tabnew - endfor - tabfirst - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1)], [s:tab(2), s:tab(3), s:tab(4), s:tab(5), '...', s:tab(17), s:tab(18), s:tab(19), s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabfirst_tabnext() - for i in range(19) - tabnew - endfor - tabfirst - tabnext - call s:assert.equals(lightline#tabs(), [[s:tab(1)], [s:tab(2, 1)], [s:tab(3), s:tab(4), s:tab(5), s:tab(6), '...', s:tab(18), s:tab(19), s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabnext_10() - for i in range(19) - tabnew - endfor - tabnext 10 - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), '...', s:tab(8), s:tab(9)], [s:tab(10, 1)], [s:tab(11), s:tab(12), '...', s:tab(19), s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabprevious() - for i in range(19) - tabnew - endfor - tabprevious - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), s:tab(3), '...', s:tab(15), s:tab(16), s:tab(17), s:tab(18)], [s:tab(19, 1)], [s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabprevious_tabprevious() - for i in range(19) - tabnew - endfor - tabprevious - tabprevious - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), s:tab(3), '...', s:tab(15), s:tab(16), s:tab(17)], [s:tab(18, 1)], [s:tab(19), s:tab(20, 0, 1)]]) -endfunction |