mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-07-09 07:04:41 +02:00
[add] parts's test
This commit is contained in:
parent
2f6471a9e1
commit
38a90d8801
20
t/parts.vim
20
t/parts.vim
@ -35,4 +35,24 @@ describe 'parts'
|
|||||||
call airline#parts#define_accent('part', 'red')
|
call airline#parts#define_accent('part', 'red')
|
||||||
Expect airline#parts#get('part').accent == 'red'
|
Expect airline#parts#get('part').accent == 'red'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'value should be blank'
|
||||||
|
Expect airline#parts#filetype() == ''
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'can overwrite a filetype'
|
||||||
|
set ft=aaa
|
||||||
|
Expect airline#parts#filetype() == 'aaa'
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'can overwrite a filetype'
|
||||||
|
"GitHub actions's vim's column is smaller than 90
|
||||||
|
set ft=aaaa
|
||||||
|
if &columns >= 90
|
||||||
|
Expect airline#parts#filetype() == 'aaaa'
|
||||||
|
else
|
||||||
|
Expect airline#parts#filetype() == 'aaa…'
|
||||||
|
endif
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user