summaryrefslogtreecommitdiff
path: root/test/test_embertemplatelint_executable_detection.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_embertemplatelint_executable_detection.vader')
-rw-r--r--test/test_embertemplatelint_executable_detection.vader22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/test_embertemplatelint_executable_detection.vader b/test/test_embertemplatelint_executable_detection.vader
deleted file mode 100644
index bd0f5dd9..00000000
--- a/test/test_embertemplatelint_executable_detection.vader
+++ /dev/null
@@ -1,22 +0,0 @@
-Before:
- call ale#test#SetDirectory('/testplugin/test')
-
- runtime ale_linters/handlebars/embertemplatelint.vim
-
-After:
- call ale#test#RestoreDirectory()
- call ale#linter#Reset()
-
-Execute(ember-template-lint executables runs the right command):
- call ale#test#SetFilename('ember-template-lint-test-files/app/template.hbs')
-
- AssertEqual
- \ ale_linters#handlebars#embertemplatelint#GetCommand(bufnr(''), [2, 0, 0]),
- \ '%e --json --filename %s'
-
-Execute(old ember-template-lint executables runs the right command):
- call ale#test#SetFilename('ember-template-lint-test-files/app/template.hbs')
-
- AssertEqual
- \ ale_linters#handlebars#embertemplatelint#GetCommand(bufnr(''), [1, 5, 0]),
- \ '%e --json %t'