summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaihu <paihu@users.noreply.github.com>2018-10-24 08:26:15 +0900
committerpaihu <paihu@users.noreply.github.com>2018-10-24 08:29:11 +0900
commitd14db50c4404cfdd95a5d3a19e7d6574b69aa2f0 (patch)
treec5b497f5ec607e23ff1c512988157694752a5232
parentf4395f5b8cb0078536e6033ca9c86e7299ed3ba1 (diff)
downloadale-d14db50c4404cfdd95a5d3a19e7d6574b69aa2f0.zip
fix has('unix') equal 0 is windows.
-rw-r--r--test/util/test_cd_string_commands.vader20
1 files changed, 6 insertions, 14 deletions
diff --git a/test/util/test_cd_string_commands.vader b/test/util/test_cd_string_commands.vader
index 04de4052..f2102e48 100644
--- a/test/util/test_cd_string_commands.vader
+++ b/test/util/test_cd_string_commands.vader
@@ -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(''))