summaryrefslogtreecommitdiff
path: root/test/test_backwards_compatibility.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_backwards_compatibility.vader')
-rw-r--r--test/test_backwards_compatibility.vader19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/test_backwards_compatibility.vader b/test/test_backwards_compatibility.vader
deleted file mode 100644
index e4e3756f..00000000
--- a/test/test_backwards_compatibility.vader
+++ /dev/null
@@ -1,19 +0,0 @@
-" These tests, and the code that it covers, may be removed upon a major release.
-
-After:
- unlet! g:ale_linters_sh_shellcheck_exclusions
- unlet! g:ale_sh_shellcheck_exclusions
- unlet! g:ale_linters_sh_shell_default_shell
- unlet! g:ale_sh_shell_default_shell
-
-Execute(Old variable name for the 'shellcheck' linter should still work):
- let g:ale_linters_sh_shellcheck_exclusions = 'SC1234'
- runtime ale_linters/sh/shellcheck.vim
-
- AssertEqual 'SC1234', g:ale_sh_shellcheck_exclusions
-
-Execute (Old variable name for the 'shell' linter should still work):
- let g:ale_linters_sh_shell_default_shell = 'woosh'
- runtime ale_linters/sh/shell.vim
-
- AssertEqual 'woosh', g:ale_sh_shell_default_shell