[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')
|
||||
Expect airline#parts#get('part').accent == 'red'
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue