diff options
Diffstat (limited to 'test/functional/example_spec.lua')
-rw-r--r-- | test/functional/example_spec.lua | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/functional/example_spec.lua b/test/functional/example_spec.lua index 5fc55f4aab..8db5c3d867 100644 --- a/test/functional/example_spec.lua +++ b/test/functional/example_spec.lua @@ -1,12 +1,13 @@ -- To run this test: -- TEST_FILE=test/functional/example_spec.lua make functionaltest -local helpers = require('test.functional.helpers')(after_each) +local t = require('test.testutil') +local n = require('test.functional.testnvim')() local Screen = require('test.functional.ui.screen') -local clear = helpers.clear -local command = helpers.command -local eq = helpers.eq -local feed = helpers.feed +local clear = n.clear +local command = n.command +local eq = t.eq +local feed = n.feed describe('example', function() local screen |