diff options
author | w0rp <devw0rp@gmail.com> | 2019-08-18 18:28:58 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-08-18 18:29:59 +0100 |
commit | 73812c3e41c1c7fcf1705811f35ac4c9ccec003e (patch) | |
tree | a735617582e92bf09719d838fce49f058baceb73 /test/fixers | |
parent | 91636cff06c7fec4788ee83a26b11de46c9eabc8 (diff) | |
download | ale-73812c3e41c1c7fcf1705811f35ac4c9ccec003e.zip |
Merge remote-tracking branch 'AlexeiDrake/master' into bugfix/c-lsp-build-dir-settings
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_hindent_fixer_callback.vader | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/fixers/test_hindent_fixer_callback.vader b/test/fixers/test_hindent_fixer_callback.vader new file mode 100644 index 00000000..2e5a8b9f --- /dev/null +++ b/test/fixers/test_hindent_fixer_callback.vader @@ -0,0 +1,18 @@ +Before: + call ale#test#SetDirectory('/testplugin/test/fixers') + +After: + Restore + + call ale#test#RestoreDirectory() + +Execute(The hindent callback should return the correct default values): + call ale#test#SetFilename('../haskell_files/testfile.hs') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('hindent') + \ . ' %t', + \ }, + \ ale#fixers#hindent#Fix(bufnr('')) |