diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-25 20:42:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-25 20:42:04 +0200 |
commit | e828a5a76b097885ebd40d636e9ea95251b2995d (patch) | |
tree | f05ea387861273f79bc8ddec6c9892a503e64f49 /test | |
parent | 714ec09c6d83295ef70becbbaf1c620761cbdac6 (diff) | |
parent | e8ddbbdf07838a99545181a5f63d460f4ea7e8a4 (diff) | |
download | rneovim-e828a5a76b097885ebd40d636e9ea95251b2995d.tar.gz rneovim-e828a5a76b097885ebd40d636e9ea95251b2995d.tar.bz2 rneovim-e828a5a76b097885ebd40d636e9ea95251b2995d.zip |
Merge #5530 from justinmk/checkhealth
CheckHealth: more checks. Also hack around an infinite loop.
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/plugin/health_spec.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/plugin/health_spec.lua b/test/functional/plugin/health_spec.lua index 4bcaab009f..5b5e5f9ace 100644 --- a/test/functional/plugin/health_spec.lua +++ b/test/functional/plugin/health_spec.lua @@ -47,7 +47,7 @@ describe('health.vim', function() helpers.expect([[ health#success1#check - ================================================================================ + ======================================================================== ## report 1 - SUCCESS: everything is fine @@ -55,7 +55,7 @@ describe('health.vim', function() - SUCCESS: nothing to see here health#success2#check - ================================================================================ + ======================================================================== ## another 1 - SUCCESS: ok ]]) @@ -66,7 +66,7 @@ describe('health.vim', function() helpers.expect([[ health#broken#check - ================================================================================ + ======================================================================== - ERROR: Failed to run healthcheck for "broken" plugin. Exception: caused an error ]]) @@ -77,7 +77,7 @@ describe('health.vim', function() helpers.expect([[ health#non_existent_healthcheck#check - ================================================================================ + ======================================================================== - ERROR: No healthcheck found for "non_existent_healthcheck" plugin. ]]) end) |