summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorcyy <cyyever@outlook.com>2019-09-23 10:43:31 +0800
committercyy <cyyever@outlook.com>2020-10-31 14:01:08 +0800
commit9d1a71a5cb7473e34f7ae27162de4538dbeb9cb8 (patch)
tree3f689628646ab7aad82316a5ad15d9546a892ee5 /test
parent983c7e880523de3b18e42f1405ba2d3ba6509960 (diff)
downloadale-9d1a71a5cb7473e34f7ae27162de4538dbeb9cb8.zip
add doc and test
Diffstat (limited to 'test')
-rw-r--r--test/fish_files/testfile.fish0
-rw-r--r--test/fixers/test_fish_indent_fixer_callback.vader40
2 files changed, 40 insertions, 0 deletions
diff --git a/test/fish_files/testfile.fish b/test/fish_files/testfile.fish
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/fish_files/testfile.fish
diff --git a/test/fixers/test_fish_indent_fixer_callback.vader b/test/fixers/test_fish_indent_fixer_callback.vader
new file mode 100644
index 00000000..c83300e1
--- /dev/null
+++ b/test/fixers/test_fish_indent_fixer_callback.vader
@@ -0,0 +1,40 @@
+Before:
+ Save g:ale_fish_fishindent_executable
+ Save g:ale_fish_fishindent_options
+
+ " Use an invalid global executable, so we don't match it.
+ let g:ale_fish_fishindent_executable = 'xxxinvalid'
+ let g:ale_fish_fishindent_options = ''
+
+ call ale#test#SetDirectory('/testplugin/test/fixers')
+
+After:
+ Restore
+
+ call ale#test#RestoreDirectory()
+
+Execute(The fish_indent callback should return the correct default values):
+ call ale#test#SetFilename('../fish_files/testfile.fish')
+
+ AssertEqual
+ \ {
+ \ 'read_temporary_file': 1,
+ \ 'command': ale#Escape('xxxinvalid')
+ \ . ' -w '
+ \ . ' %t',
+ \ },
+ \ ale#fixers#fish_indent#Fix(bufnr(''))
+
+Execute(The fish_indent callback should include custom fish_indent options):
+ let g:ale_fish_fishindent_options = "-d"
+ call ale#test#SetFilename('../fish_files/testfile.fish')
+
+ AssertEqual
+ \ {
+ \ 'read_temporary_file': 1,
+ \ 'command': ale#Escape('xxxinvalid')
+ \ . ' -w '
+ \ . ' -d'
+ \ . ' %t',
+ \ },
+ \ ale#fixers#fish_indent#Fix(bufnr(''))