vim-airline/t/commands.vim

53 lines
1.3 KiB
VimL
Raw Normal View History

2013-08-30 20:57:34 -04:00
source plugin/airline.vim
2015-02-27 22:45:12 -05:00
doautocmd VimEnter
2013-08-30 20:57:34 -04:00
describe 'commands'
it 'should toggle off and on'
execute 'AirlineToggle'
Expect exists('#airline') to_be_false
execute 'AirlineToggle'
Expect exists('#airline') to_be_true
end
2021-10-10 19:42:42 +09:00
it 'should toggle whitespace off'
call airline#extensions#load()
2013-08-30 20:57:34 -04:00
execute 'AirlineToggleWhitespace'
Expect exists('#airline_whitespace') to_be_false
2021-10-10 19:42:42 +09:00
end
it 'should toggle whitespace on'
call airline#extensions#load()
2013-08-30 20:57:34 -04:00
execute 'AirlineToggleWhitespace'
Expect exists('#airline_whitespace') to_be_true
end
2021-10-10 19:42:42 +09:00
it 'should display theme name "simple"'
2013-08-30 20:57:34 -04:00
execute 'AirlineTheme simple'
Expect g:airline_theme == 'simple'
2021-10-10 19:42:42 +09:00
end
it 'should display theme name "dark"'
2013-08-30 20:57:34 -04:00
execute 'AirlineTheme dark'
Expect g:airline_theme == 'dark'
2021-10-10 19:42:42 +09:00
end
it 'should display theme name "dark" because specifying a name that does not exist'
2016-01-30 14:31:22 +01:00
execute 'AirlineTheme doesnotexist'
Expect g:airline_theme == 'dark'
2021-10-10 19:42:42 +09:00
end
it 'should display theme name molokai'
colors molokai
Expect g:airline_theme == 'molokai'
2013-08-30 20:57:34 -04:00
end
2013-10-06 09:01:01 -04:00
it 'should have a refresh command'
Expect exists(':AirlineRefresh') to_be_true
end
2021-04-28 00:50:13 +09:00
it 'should have a extensions command'
Expect exists(':AirlineExtensions') to_be_true
end
2013-08-30 20:57:34 -04:00
end