diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-05 10:25:49 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-05 23:55:57 +0200 |
| commit | 330a6713bf888b1b612a1ebebb5d95bb0b31cd53 (patch) | |
| tree | a06fb188af5c808f31d808e7183cab0dbde23e64 /test/functional/plugin/matchparen_spec.lua | |
| parent | 7086751c5e4eb3cfee0b98df0d3cedc8bff47d35 (diff) | |
| download | rneovim-330a6713bf888b1b612a1ebebb5d95bb0b31cd53.tar.gz rneovim-330a6713bf888b1b612a1ebebb5d95bb0b31cd53.tar.bz2 rneovim-330a6713bf888b1b612a1ebebb5d95bb0b31cd53.zip | |
test: Eliminate plugin/helpers.lua
Diffstat (limited to 'test/functional/plugin/matchparen_spec.lua')
| -rw-r--r-- | test/functional/plugin/matchparen_spec.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/functional/plugin/matchparen_spec.lua b/test/functional/plugin/matchparen_spec.lua index 51ec7e4870..13e1283e2c 100644 --- a/test/functional/plugin/matchparen_spec.lua +++ b/test/functional/plugin/matchparen_spec.lua @@ -1,19 +1,17 @@ local helpers = require('test.functional.helpers')(after_each) -local plugin_helpers = require('test.functional.plugin.helpers') local Screen = require('test.functional.ui.screen') +local clear = helpers.clear local command = helpers.command local meths = helpers.meths local feed = helpers.feed local eq = helpers.eq -local reset = plugin_helpers.reset - describe('matchparen', function() local screen before_each(function() - reset() + clear{args={'-u', 'NORC'}} screen = Screen.new(20,5) screen:attach() screen:set_default_attr_ids( { |