blob: 5f167a768c78bd492a749559bf4c392ab4054d7c (
plain) (
blame)
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
|
Before:
call ale#test#SetDirectory('/testplugin/test')
runtime ale_linters/java/javac.vim
Save $PATH
let $PATH = ale#path#Simplify(g:dir . '/test-files/ant/bin')
After:
Restore
call ale#test#RestoreDirectory()
call ale#linter#Reset()
Execute(Should return `cd '[dir]' && 'ant' classpath -S -q`):
call ale#test#SetFilename('test-files/ant/ant-project/Main.java')
AssertEqual
\ [
\ ale#path#Simplify(resolve(g:dir) . '/test-files/ant/ant-project'),
\ ale#Escape('ant') . ' classpath' . ' -S' . ' -q',
\ ],
\ ale#ant#BuildClasspathCommand(bufnr(''))
Execute(Should return empty string if ant cannot be executed):
call ale#test#SetFilename('test-files/ant/not-an-ant-project/Main.java')
AssertEqual ['', ''], ale#ant#BuildClasspathCommand(bufnr(''))
|