ale/test/util/test_cd_string_commands.vader

29 lines
831 B
Plaintext

Before:
silent! cd /testplugin/test/util
let g:dir = getcwd()
After:
silent execute 'cd ' . fnameescape(g:dir)
unlet! g:dir
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
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