Merge pull request #2372 from vim-airline/add_parts_test

[add] parts's test
This commit is contained in:
Christian Brabandt 2021-04-29 19:49:20 +02:00 committed by GitHub
commit 06134df810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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