From 8d8b295ef5ed60f1c1a978d241a85d922ffe05b5 Mon Sep 17 00:00:00 2001 From: Sajjad Hashemian Date: Mon, 27 May 2019 09:00:11 +0430 Subject: add pgformatter --- test/fixers/test_pgformatter_fixer_callback.vader | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/fixers/test_pgformatter_fixer_callback.vader (limited to 'test') diff --git a/test/fixers/test_pgformatter_fixer_callback.vader b/test/fixers/test_pgformatter_fixer_callback.vader new file mode 100644 index 00000000..5baa6f6f --- /dev/null +++ b/test/fixers/test_pgformatter_fixer_callback.vader @@ -0,0 +1,24 @@ +Before: + Save g:ale_sql_pgformatter_executable + Save g:ale_sql_pgformatter_options + +After: + Restore + +Execute(The pgFormatter callback should return the correct default values): + AssertEqual + \ { + \ 'command': ale#Escape('pg_format') + \ }, + \ ale#fixers#pgformatter#Fix(bufnr('')) + +Execute(The pgFormatter executable and options should be configurable): + let g:ale_sql_pgformatter_executable = '/path/to/pg_format' + let g:ale_sql_pgformatter_options = '-n' + + AssertEqual + \ { + \ 'command': ale#Escape('/path/to/pg_format') + \ . ' -n', + \ }, + \ ale#fixers#pgformatter#Fix(bufnr('')) -- cgit v1.2.3