From 0cb3e3655419e80226e3738f94d514836a382b87 Mon Sep 17 00:00:00 2001 From: Ben Paxton Date: Mon, 19 Mar 2018 15:34:47 +0000 Subject: Lint whole package for gosimple and gotype Fixes #936 --- test/command_callback/test_gosimple_command_callback.vader | 12 ++++++++++++ test/command_callback/test_gotype_command_callback.vader | 4 +++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 test/command_callback/test_gosimple_command_callback.vader (limited to 'test/command_callback') diff --git a/test/command_callback/test_gosimple_command_callback.vader b/test/command_callback/test_gosimple_command_callback.vader new file mode 100644 index 00000000..a0b1f468 --- /dev/null +++ b/test/command_callback/test_gosimple_command_callback.vader @@ -0,0 +1,12 @@ +Before: + runtime ale_linters/go/gosimple.vim + call ale#test#SetFilename('../go_files/testfile2.go') + +After: + call ale#linter#Reset() + +Execute(The default gosimple command should be correct): + AssertEqual 'cd ' . ale#Escape(expand('%:p:h')) . ' && ' + \ . ' gosimple .', + \ ale_linters#go#gosimple#GetCommand(bufnr('')) + diff --git a/test/command_callback/test_gotype_command_callback.vader b/test/command_callback/test_gotype_command_callback.vader index ec98627c..4fba3344 100644 --- a/test/command_callback/test_gotype_command_callback.vader +++ b/test/command_callback/test_gotype_command_callback.vader @@ -6,7 +6,9 @@ After: call ale#linter#Reset() Execute(The default gotype command should be correct): - AssertEqual 'gotype %s', ale_linters#go#gotype#GetCommand(bufnr('')) + AssertEqual 'cd ' . ale#Escape(expand('%:p:h')) . ' && ' + \ . ' gotype .', + \ ale_linters#go#gotype#GetCommand(bufnr('')) Execute(The gotype callback should ignore test files): call ale#test#SetFilename('bla_test.go') -- cgit v1.2.3