Move path functions to their own file

This commit is contained in:
w0rp
2017-04-17 23:29:02 +01:00
parent 6c762237ce
commit e237add9fd
26 changed files with 90 additions and 89 deletions

View File

@@ -2,8 +2,8 @@ Before:
silent! cd /testplugin/test/util
Execute(CdString should output the correct command string):
AssertEqual 'cd /foo\ bar/baz && ', ale#util#CdString('/foo bar/baz')
AssertEqual 'cd /foo\ bar/baz && ', ale#path#CdString('/foo bar/baz')
Execute(BufferCdString should output the correct command string):
Assert match(ale#util#BufferCdString(bufnr('')), '^cd .*test/util && $') >= 0,
\ 'String didn''t match regex: ' . ale#util#BufferCdString(bufnr(''))
Assert match(ale#path#BufferCdString(bufnr('')), '^cd .*test/util && $') >= 0,
\ 'String didn''t match regex: ' . ale#path#BufferCdString(bufnr(''))