aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/functional/ex_cmds/quit_spec.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/functional/ex_cmds/quit_spec.lua b/test/functional/ex_cmds/quit_spec.lua
new file mode 100644
index 0000000000..3cd8e19617
--- /dev/null
+++ b/test/functional/ex_cmds/quit_spec.lua
@@ -0,0 +1,14 @@
+local helpers = require('test.functional.helpers')
+local execute, eq, clear = helpers.execute, helpers.eq, helpers.clear
+
+describe(':qa', function()
+ before_each(function()
+ clear('qa')
+ end)
+
+ it('verify #3334', function()
+ -- just testing if 'qa' passed as a program argument wont result in memory
+ -- errors
+ end)
+end)
+