diff options
author | w0rp <devw0rp@gmail.com> | 2019-01-12 13:08:52 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-01-12 13:14:29 +0000 |
commit | 6644563949299ce60aadf338103d50315a034a6a (patch) | |
tree | b3ba8e44183af915c5c9b7378bbe40dc6862aa60 /test | |
parent | d8a53cc7a5c86cea4480b264eef4778ba16e4454 (diff) | |
download | ale-6644563949299ce60aadf338103d50315a034a6a.zip |
#2132 Remove the need for the hidden add_newline option by tweaking the flow command
Diffstat (limited to 'test')
-rw-r--r-- | test/test_flow_command.vader | 6 | ||||
-rw-r--r-- | test/test_linter_retrieval.vader | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/test/test_flow_command.vader b/test/test_flow_command.vader index c673ce0a..df72d087 100644 --- a/test/test_flow_command.vader +++ b/test/test_flow_command.vader @@ -15,7 +15,7 @@ Execute(flow should return a command to run if a .flowconfig file exists): AssertEqual \ ale#Escape('flow') - \ . ' check-contents --respect-pragma --json --from ale %s', + \ . ' check-contents --respect-pragma --json --from ale %s < %t; echo', \ ale_linters#javascript#flow#GetCommand(bufnr('%'), []) Execute(flow should not use the respect pragma argument if the option is off): @@ -25,7 +25,7 @@ Execute(flow should not use the respect pragma argument if the option is off): AssertEqual \ ale#Escape('flow') - \ . ' check-contents --json --from ale %s', + \ . ' check-contents --json --from ale %s < %t; echo', \ ale_linters#javascript#flow#GetCommand(bufnr('%'), []) Execute(flow should should not use --respect-pragma for old versions): @@ -33,7 +33,7 @@ Execute(flow should should not use --respect-pragma for old versions): AssertEqual \ ale#Escape('flow') - \ . ' check-contents --json --from ale %s', + \ . ' check-contents --json --from ale %s < %t; echo', \ ale_linters#javascript#flow#GetCommand(bufnr('%'), [ \ 'Warning: `flow --version` is deprecated in favor of `flow version`', \ 'Flow, a static type checker for JavaScript, version 0.27.0', diff --git a/test/test_linter_retrieval.vader b/test/test_linter_retrieval.vader index a1c34622..6f9b3db4 100644 --- a/test/test_linter_retrieval.vader +++ b/test/test_linter_retrieval.vader @@ -2,8 +2,8 @@ Before: Save g:ale_linters Save g:ale_linter_aliases - let g:testlinter1 = {'name': 'testlinter1', 'executable': 'testlinter1', 'command': 'testlinter1', 'callback': 'testCB1', 'output_stream': 'stdout', 'read_buffer': 1, 'lint_file': 0, 'aliases': [], 'lsp': '', 'add_newline': 0} - let g:testlinter2 = {'name': 'testlinter2', 'executable': 'testlinter2', 'command': 'testlinter2', 'callback': 'testCB2', 'output_stream': 'stdout', 'read_buffer': 0, 'lint_file': 1, 'aliases': [], 'lsp': '', 'add_newline': 0} + let g:testlinter1 = {'name': 'testlinter1', 'executable': 'testlinter1', 'command': 'testlinter1', 'callback': 'testCB1', 'output_stream': 'stdout', 'read_buffer': 1, 'lint_file': 0, 'aliases': [], 'lsp': ''} + let g:testlinter2 = {'name': 'testlinter2', 'executable': 'testlinter2', 'command': 'testlinter2', 'callback': 'testCB2', 'output_stream': 'stdout', 'read_buffer': 0, 'lint_file': 1, 'aliases': [], 'lsp': ''} call ale#linter#Reset() call ale#linter#PreventLoading('testft') call ale#linter#PreventLoading('javascript') @@ -160,7 +160,7 @@ Execute (Buffer-local overrides for aliases should be used): Execute (Linters should be loaded from disk appropriately): call ale#linter#Reset() - AssertEqual [{'name': 'testlinter', 'output_stream': 'stdout', 'executable': 'testlinter', 'command': 'testlinter', 'callback': 'testCB', 'read_buffer': 1, 'lint_file': 0, 'aliases': [], 'lsp': '', 'add_newline': 0}], ale#linter#Get('testft') + AssertEqual [{'name': 'testlinter', 'output_stream': 'stdout', 'executable': 'testlinter', 'command': 'testlinter', 'callback': 'testCB', 'read_buffer': 1, 'lint_file': 0, 'aliases': [], 'lsp': ''}], ale#linter#Get('testft') Execute (Linters for later filetypes should replace the former ones): @@ -178,5 +178,5 @@ Execute (Linters for later filetypes should replace the former ones): \}) AssertEqual [ - \ {'output_stream': 'stdout', 'lint_file': 0, 'read_buffer': 1, 'name': 'eslint', 'executable': 'x', 'lsp': '', 'aliases': [], 'command': 'x', 'callback': 'x', 'add_newline': 0} + \ {'output_stream': 'stdout', 'lint_file': 0, 'read_buffer': 1, 'name': 'eslint', 'executable': 'x', 'lsp': '', 'aliases': [], 'command': 'x', 'callback': 'x'} \], ale#linter#Get('javascript.typescript') |