diff options
author | w0rp <devw0rp@gmail.com> | 2018-06-20 13:35:57 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-06-20 13:35:57 +0100 |
commit | 0e1528ec34dbd025712f46a6e556b430c45c8173 (patch) | |
tree | 54237b83969de94c01635c0dc67e81cf56662de9 /test/test_ale_toggle.vader | |
parent | 9674132933df3e5b126c30da33a26c9be3ef87c6 (diff) | |
download | ale-0e1528ec34dbd025712f46a6e556b430c45c8173.zip |
Set up most of the autocmd events in one group
Diffstat (limited to 'test/test_ale_toggle.vader')
-rw-r--r-- | test/test_ale_toggle.vader | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/test/test_ale_toggle.vader b/test/test_ale_toggle.vader index 427000b6..cac762b4 100644 --- a/test/test_ale_toggle.vader +++ b/test/test_ale_toggle.vader @@ -32,12 +32,8 @@ Before: \}] let g:expected_groups = [ \ 'ALECleanupGroup', - \ 'ALECursorGroup', + \ 'ALEEvents', \ 'ALEHighlightBufferGroup', - \ 'ALERunOnEnterGroup', - \ 'ALERunOnFiletypeChangeGroup', - \ 'ALERunOnSaveGroup', - \ 'ALERunOnTextChangedGroup', \] function! ToggleTestCallback(buffer, output) @@ -60,7 +56,7 @@ Before: let l:results = [] for l:line in split(l:output, "\n") - let l:match = matchlist(l:line, '^ALE[a-zA-Z]\+Group') + let l:match = matchlist(l:line, '^ALE[a-zA-Z]\+') " We don't care about some groups here. if !empty(l:match) @@ -139,13 +135,7 @@ Execute(ALEToggle should reset everything and then run again): AssertEqual [], getloclist(0), 'The loclist was not cleared' AssertEqual [0, []], ale#sign#FindCurrentSigns(bufnr('%')), 'The signs were not cleared' AssertEqual [], getmatches(), 'The highlights were not cleared' - AssertEqual - \ [ - \ 'ALECleanupGroup', - \ 'ALEHighlightBufferGroup', - \ 'ALERunOnSaveGroup', - \ ], - \ ParseAuGroups() + AssertEqual g:expected_groups, ParseAuGroups() " Toggle ALE on, everything should be set up and run again. ALEToggle |