File: test_cd_string_commands.vader

package info (click to toggle)
vim-ale 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,408 kB
  • sloc: sh: 497; python: 311; perl: 31; makefile: 4; javascript: 1
file content (20 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.
  AssertEqual
  \ has('unix') ? 'cd ''/foo bar/baz'' && ' : 'cd /d "/foo bar/baz" && ',
  \ ale#command#CdString('/foo bar/baz')

Execute(CdString handle substitution and formatting):
  call ale#test#SetFilename('foo.txt')

  AssertEqual
  \ has('unix') ? 'cd %s:h && ' : 'cd /d %s:h && ',
  \ ale#command#CdString('%s:h')