fix has('unix') equal 0 is windows.

This commit is contained in:
paihu 2018-10-24 08:26:15 +09:00
parent f4395f5b8c
commit d14db50c44
1 changed files with 6 additions and 14 deletions

View File

@ -8,21 +8,13 @@ After:
Execute(CdString should output the correct command string):
" We will check that escaping is done correctly for each platform.
if has('win32')
AssertEqual
\ 'cd /d "/foo bar/baz" && ',
\ ale#path#CdString('/foo bar/baz')
else
AssertEqual
\ has('unix') ? 'cd ''/foo bar/baz'' && ' : 'cd "/foo bar/baz" && ',
\ ale#path#CdString('/foo bar/baz')
endif
AssertEqual
\ has('unix') ? 'cd ''/foo bar/baz'' && ' : 'cd /d "/foo bar/baz" && ',
\ ale#path#CdString('/foo bar/baz')
Execute(BufferCdString should output the correct command string):
call ale#test#SetFilename('foo.txt')
if has('win32')
AssertEqual 'cd /d ' .ale#Escape(g:dir) . ' && ', ale#path#BufferCdString(bufnr(''))
else
AssertEqual 'cd ' . ale#Escape(g:dir) . ' && ', ale#path#BufferCdString(bufnr(''))
endif
AssertEqual
\ has('unix') ? 'cd ' . ale#Escape(g:dir) . ' && ' : 'cd /d ' . ale#Escape(g:dir) . ' && ',
\ ale#path#BufferCdString(bufnr(''))