diff options
| author | John Szakmeister <john@szakmeister.net> | 2015-03-01 09:00:27 -0500 |
|---|---|---|
| committer | John Szakmeister <john@szakmeister.net> | 2015-03-01 09:00:27 -0500 |
| commit | 235909044a2ed270352368f17e5256dc91930033 (patch) | |
| tree | 9f67cdb92ef9ac2875506a6bb401ca891df4f714 /test/functional/helpers.lua | |
| parent | 4bebdd1cd9adbbfb062f60584c21a89cddc52b09 (diff) | |
| download | rneovim-235909044a2ed270352368f17e5256dc91930033.tar.gz rneovim-235909044a2ed270352368f17e5256dc91930033.tar.bz2 rneovim-235909044a2ed270352368f17e5256dc91930033.zip | |
tests: require luassert in the helpers
This is necessary for newer versions of Busted, otherwise assert will be
nil and the tests will die.
Note: this does not mean the tests now work with the latest Busted.
There are still several issues preventing that from happening.
Diffstat (limited to 'test/functional/helpers.lua')
| -rw-r--r-- | test/functional/helpers.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index fc6bf80d7e..508bb6e593 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -1,4 +1,5 @@ require('coxpcall') +local assert = require('luassert') local Loop = require('nvim.loop') local MsgpackStream = require('nvim.msgpack_stream') local AsyncSession = require('nvim.async_session') |