diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-05-29 21:26:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-29 21:26:01 +0100 |
commit | ca0cdd26fc4c29378b37bd214868050c61e0735d (patch) | |
tree | b5a97371580702939a1e06604ffcdeac726134d2 /test | |
parent | 6b819dd74a8580f5c91739bd9bdd34071dd2a9ec (diff) | |
parent | 8d8b295ef5ed60f1c1a978d241a85d922ffe05b5 (diff) | |
download | ale-ca0cdd26fc4c29378b37bd214868050c61e0735d.zip |
Merge pull request #2540 from sijad/pgformatter
add pgformatter fixer
Diffstat (limited to 'test')
-rw-r--r-- | test/fixers/test_pgformatter_fixer_callback.vader | 24 |
1 files changed, 24 insertions, 0 deletions
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('')) |