summaryrefslogtreecommitdiff
path: root/test/util/test_cd_string_commands.vader
blob: 04de405240c08269504ecdb53db6e4278870bcfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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