From 775d121d46b2b2cf61997598e4dc664476fd470d Mon Sep 17 00:00:00 2001 From: toastal <561087+toastal@users.noreply.github.com> Date: Sun, 8 Aug 2021 13:09:21 +0000 Subject: `purs-tidy` for PureScript (#3863) * purs-tidy * update email address for toastal --- test/fixers/test_purs_tidy_fixer_callback.vader | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/fixers/test_purs_tidy_fixer_callback.vader (limited to 'test/fixers/test_purs_tidy_fixer_callback.vader') diff --git a/test/fixers/test_purs_tidy_fixer_callback.vader b/test/fixers/test_purs_tidy_fixer_callback.vader new file mode 100644 index 00000000..7debd434 --- /dev/null +++ b/test/fixers/test_purs_tidy_fixer_callback.vader @@ -0,0 +1,21 @@ +Before: + Save g:ale_purescript_tidy_executable + Save g:ale_purescript_tidy_options + + " Use an invalid global executable, so we don’t match it. + let g:ale_purescript_tidy_executable = 'odd-purs-tidy' + let g:ale_purescript_tidy_options = '--indent 3' + + call ale#assert#SetUpFixerTest('purescript', 'purs-tidy') + +After: + call ale#assert#TearDownFixerTest() + +Execute(The purs-tidy callback should return the correct custom options): + AssertFixer + \ { + \ 'command': ale#Escape('odd-purs-tidy') + \ . ' --indent 3' + \ . ' %s', + \ 'read_temporary_file': 0, + \ } -- cgit v1.2.3