summaryrefslogtreecommitdiff
path: root/test/command_callback/test_cuda_nvcc_command_callbacks.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-15 18:24:53 +0100
committerw0rp <devw0rp@gmail.com>2018-07-15 18:28:28 +0100
commita42999a639b2916b769a85f37d037be314d9d61b (patch)
tree5ebfb4d357dc673efa93fd32a66b489c4510de40 /test/command_callback/test_cuda_nvcc_command_callbacks.vader
parent5155a35a80fe3b20659eb0f28cc6cc720532dd3f (diff)
downloadale-a42999a639b2916b769a85f37d037be314d9d61b.zip
Massively reduce the amount of code needed for linter tests
Diffstat (limited to 'test/command_callback/test_cuda_nvcc_command_callbacks.vader')
-rw-r--r--test/command_callback/test_cuda_nvcc_command_callbacks.vader34
1 files changed, 6 insertions, 28 deletions
diff --git a/test/command_callback/test_cuda_nvcc_command_callbacks.vader b/test/command_callback/test_cuda_nvcc_command_callbacks.vader
index af199d37..9e2b5ac6 100644
--- a/test/command_callback/test_cuda_nvcc_command_callbacks.vader
+++ b/test/command_callback/test_cuda_nvcc_command_callbacks.vader
@@ -1,36 +1,14 @@
Before:
- Save g:ale_cuda_nvcc_executable
- Save g:ale_cuda_nvcc_options
-
- unlet! g:ale_cuda_nvcc_executable
- unlet! b:ale_cuda_nvcc_executable
- unlet! g:ale_cuda_nvcc_options
- unlet! b:ale_cuda_nvcc_options
-
- runtime ale_linters/cuda/nvcc.vim
+ call ale#assert#SetUpLinterTest('cuda', 'nvcc')
After:
- Restore
- unlet! b:ale_cuda_nvcc_executable
- unlet! b:ale_cuda_nvcc_options
- call ale#linter#Reset()
+ call ale#assert#TearDownLinterTest()
Execute(The executable should be configurable):
- AssertEqual 'nvcc', ale_linters#cuda#nvcc#GetExecutable(bufnr(''))
-
- let b:ale_cuda_nvcc_executable = 'foobar'
-
- AssertEqual 'foobar', ale_linters#cuda#nvcc#GetExecutable(bufnr(''))
-
-Execute(The executable should be used in the command):
- AssertEqual
- \ ale#Escape('nvcc') . ' -cuda -std=c++11 %s'
- \ . ' -o ' . g:ale#util#nul_file,
- \ ale_linters#cuda#nvcc#GetCommand(bufnr(''))
+ AssertLinter 'nvcc',
+ \ ale#Escape('nvcc') . ' -cuda -std=c++11 %s -o ' . g:ale#util#nul_file
let b:ale_cuda_nvcc_executable = 'foobar'
- AssertEqual
- \ ale#Escape('foobar') . ' -cuda -std=c++11 %s'
- \ . ' -o ' . g:ale#util#nul_file,
- \ ale_linters#cuda#nvcc#GetCommand(bufnr(''))
+ AssertLinter 'foobar',
+ \ ale#Escape('foobar') . ' -cuda -std=c++11 %s -o ' . g:ale#util#nul_file