Skip to content

Commit

Permalink
Merge pull request ryanoasis#422 from ryanoasis/add-missing-testcase
Browse files Browse the repository at this point in the history
Add missing testcase
  • Loading branch information
get-me-power committed Dec 18, 2021
2 parents fafd27f + 9040104 commit 3e0415c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/filetype.vim
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,14 @@ function! s:suite.OneArgument_GetLicenseIcon()
call s:assert.equals( WebDevIconsGetFileTypeSymbol('LICENSE'), '')
endfunction

function! s:suite.OneArgument_GetRobotIcon()
call s:assert.equals( WebDevIconsGetFileTypeSymbol('robots.txt'), '')
endfunction

function! s:suite.OneArgument_PemIcon()
call s:assert.equals( WebDevIconsGetFileTypeSymbol('test.pem'), '')
endfunction

function! s:suite.NoArgument_OverWriteFileType_GetVimIcon()
set ft=vim
call s:assert.equals(WebDevIconsGetFileTypeSymbol(), '')
Expand Down

0 comments on commit 3e0415c

Please sign in to comment.