diff options
author | P M <10617122+pylipp@users.noreply.github.com> | 2018-04-05 21:09:41 +0200 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2018-04-05 21:09:41 +0200 |
commit | 85a2a008266f69847a3c7a9d38c16b779636ab30 (patch) | |
tree | 19504abe11cf715dadef67e613cbcb00ad604919 /test/command_callback | |
parent | 912f632bf591377a69bf688f6a85668d93be8841 (diff) | |
download | ale-85a2a008266f69847a3c7a9d38c16b779636ab30.zip |
Integration of qmlfmt linting tool (#1462)
* Add first qmlfmt support
* Add GetCommand() function
- pass --error/-e option
* Add handle unittest
- fix pattern regex
- store col as integer
* Update docs
* Add command callback unit test
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_qmlfmt_command_callback.vader | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/command_callback/test_qmlfmt_command_callback.vader b/test/command_callback/test_qmlfmt_command_callback.vader new file mode 100644 index 00000000..263caea7 --- /dev/null +++ b/test/command_callback/test_qmlfmt_command_callback.vader @@ -0,0 +1,18 @@ +Before: + runtime ale_linters/qml/qmlfmt.vim + +After: + let g:ale_qml_qmlfmt_executable = 'qmlfmt' + + call ale#linter#Reset() + +Execute(The qml qmlfmt command callback should return the correct default string): + AssertEqual ale#Escape('qmlfmt') . ' -e', + \ join(split(ale_linters#qml#qmlfmt#GetCommand(1))) + +Execute(The qmlfmt executable should be configurable): + let g:ale_qml_qmlfmt_executable = '~/.local/bin/qmlfmt' + + AssertEqual '~/.local/bin/qmlfmt', ale_linters#qml#qmlfmt#GetExecutable(1) + AssertEqual ale#Escape('~/.local/bin/qmlfmt') . ' -e', + \ join(split(ale_linters#qml#qmlfmt#GetCommand(1))) |