summaryrefslogtreecommitdiff
path: root/test/command_callback/test_iverilog_command_callback.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_iverilog_command_callback.vader
parent5155a35a80fe3b20659eb0f28cc6cc720532dd3f (diff)
downloadale-a42999a639b2916b769a85f37d037be314d9d61b.zip
Massively reduce the amount of code needed for linter tests
Diffstat (limited to 'test/command_callback/test_iverilog_command_callback.vader')
-rw-r--r--test/command_callback/test_iverilog_command_callback.vader18
1 files changed, 4 insertions, 14 deletions
diff --git a/test/command_callback/test_iverilog_command_callback.vader b/test/command_callback/test_iverilog_command_callback.vader
index 2c633178..d7a29f05 100644
--- a/test/command_callback/test_iverilog_command_callback.vader
+++ b/test/command_callback/test_iverilog_command_callback.vader
@@ -1,24 +1,14 @@
Before:
- Save g:ale_verilog_iverilog_options
-
- unlet! g:ale_verilog_iverilog_options
-
- runtime ale_linters/verilog/iverilog.vim
+ call ale#assert#SetUpLinterTest('verilog', 'iverilog')
After:
- Restore
-
- call ale#linter#Reset()
+ call ale#assert#TearDownLinterTest()
Execute(The default iverilog command should be correct):
- AssertEqual
- \ 'iverilog -t null -Wall %t',
- \ ale_linters#verilog#iverilog#GetCommand(bufnr(''))
+ AssertLinter 'iverilog', 'iverilog -t null -Wall %t'
Execute(iverilog options should be configurable):
" Additional args for the linter
let g:ale_verilog_iverilog_options = '-y.'
- AssertEqual
- \ 'iverilog -t null -Wall -y. %t',
- \ ale_linters#verilog#iverilog#GetCommand(bufnr(''))
+ AssertLinter 'iverilog', 'iverilog -t null -Wall -y. %t'