diff options
author | w0rp <devw0rp@gmail.com> | 2019-04-08 13:42:09 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-04-08 13:42:09 +0100 |
commit | 9a0ece1ecb4cddf9eebbc5bfa224764c4b5ad670 (patch) | |
tree | 1032a0f682c3d17ecd1ac4a487579ba43df26b83 /test/test_should_do_nothing_conditions.vader | |
parent | 6d14dc0ac038ab12870fb5d98ff3f569332086bc (diff) | |
download | ale-9a0ece1ecb4cddf9eebbc5bfa224764c4b5ad670.zip |
Fix #2399 - Do not check buffers used for displaying diffs
Diffstat (limited to 'test/test_should_do_nothing_conditions.vader')
-rw-r--r-- | test/test_should_do_nothing_conditions.vader | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_should_do_nothing_conditions.vader b/test/test_should_do_nothing_conditions.vader index de2e2782..6dfed555 100644 --- a/test/test_should_do_nothing_conditions.vader +++ b/test/test_should_do_nothing_conditions.vader @@ -35,6 +35,10 @@ After: unlet! b:funky_command_created unlet! b:fake_mode + if &diff is 1 + let &diff = 0 + endif + runtime autoload/ale/util.vim Given foobar(An empty file): @@ -70,6 +74,11 @@ Execute(DoNothing should return 1 when an operator is pending): AssertEqual 1, ale#ShouldDoNothing(bufnr('')) +Execute(DoNothing should return 1 for diff buffers): + let &diff = 1 + + AssertEqual 1, ale#ShouldDoNothing(bufnr('')) + Execute(The DoNothing check should work if the ALE globals aren't defined): unlet! g:ale_filetype_blacklist unlet! g:ale_maximum_file_size |