summaryrefslogtreecommitdiff
path: root/test/handler/test_rails_best_practices_handler.vader
diff options
context:
space:
mode:
authorEddie Lebow <elebow@users.noreply.github.com>2017-07-12 05:43:47 -0400
committerw0rp <w0rp@users.noreply.github.com>2017-07-12 10:43:47 +0100
commitbc32e24203159945dcf3906a5e08261ccb06e065 (patch)
treeef1ddaefe8aee1a7ca37c156a11c447753dee17f /test/handler/test_rails_best_practices_handler.vader
parent400580e4e8fc330166658c689d1abf05db38ab3b (diff)
downloadale-bc32e24203159945dcf3906a5e08261ccb06e065.zip
Add rails_best_practices handler (resolves #655) (#751)
* Move FindRailsRoot() to more general location * Add rails_best_practices handler (resolves #655) * Update documentation for rails_best_practices Also add brakeman to *ale* documentation. * rails_best_practices: allow overriding the executable * rails_best_practices: format help correctly * rails_best_practices: capture tool output on Windows
Diffstat (limited to 'test/handler/test_rails_best_practices_handler.vader')
-rw-r--r--test/handler/test_rails_best_practices_handler.vader50
1 files changed, 50 insertions, 0 deletions
diff --git a/test/handler/test_rails_best_practices_handler.vader b/test/handler/test_rails_best_practices_handler.vader
new file mode 100644
index 00000000..037d2527
--- /dev/null
+++ b/test/handler/test_rails_best_practices_handler.vader
@@ -0,0 +1,50 @@
+Before:
+ " Switch to the test rails directory.
+ let b:path = getcwd()
+ silent! cd /testplugin/test/handler
+ cd ../ruby_fixtures/valid_rails_app/app/models
+
+ runtime ale_linters/ruby/rails_best_practices.vim
+
+After:
+ " Switch back to whatever directory it was that we started on.
+ silent! 'cd ' . fnameescape(b:path)
+ unlet! b:path
+
+ call ale#linter#Reset()
+
+Execute(The rails_best_practices handler should parse JSON correctly):
+ silent file! thing.rb
+
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 5,
+ \ 'text': 'use local variable',
+ \ 'type': 'W',
+ \ },
+ \ {
+ \ 'lnum': 10,
+ \ 'text': 'other advice',
+ \ 'type': 'W',
+ \ }
+ \ ],
+ \ ale_linters#ruby#rails_best_practices#Handle(bufnr(''), [
+ \ '[',
+ \ '{',
+ \ '"message": "use local variable",',
+ \ '"line_number": "5",',
+ \ '"filename": "/testplugin/test/ruby_fixtures/valid_rails_app/app/models/thing.rb"',
+ \ '},{',
+ \ '"message": "other advice",',
+ \ '"line_number": "10",',
+ \ '"filename": "/testplugin/test/ruby_fixtures/valid_rails_app/app/models/thing.rb"',
+ \ '}',
+ \ ']'
+ \ ])
+
+Execute(The rails_best_practices handler should parse JSON correctly when there is no output from the tool):
+ AssertEqual
+ \ [],
+ \ ale_linters#ruby#rails_best_practices#Handle(347, [
+ \ ])