[add] winwidth's test

This commit is contained in:
kazukazuinaina
2021-05-14 02:25:14 +09:00
parent ab4962b838
commit 51c79f61f4
2 changed files with 15 additions and 1 deletions

View File

@@ -20,6 +20,20 @@ describe 'util'
Expect airline#util#append('1', 0) == ' 1'
end
it 'should be same &columns'
let g:airline_statusline_ontop = 1
Expect airline#util#winwidth() == &columns
end
it 'should be same winwidth(0)'
let g:airline_statusline_ontop = 0
Expect airline#util#winwidth() == winwidth(0)
end
it 'should be same winwidth(30)'
Expect airline#util#winwidth(30, 0) == winwidth(30)
end
it 'has prepend wrapper function'
Expect airline#util#prepend('', 0) == ''
Expect airline#util#prepend('1', 0) == '1 '