From 117d3db6d794b3b4547f1feb9742c9ab0c6b35c8 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Tue, 4 Nov 2014 15:48:18 -0300 Subject: test: Simplify/fix options_spec.lua The options_spec.lua suite has one purpose: Check if the :options commands will throw any exception(:options is implemented by $VIMRUNTIME/optwin.vim). For this it is best to use the `vim_command` API function since it will automatically catch exceptions and forward them via msgpack-rpc. Also, the option window seems to affect other tests, so call `restart` in the teardown hook. --- test/functional/legacy/options_spec.lua | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/test/functional/legacy/options_spec.lua b/test/functional/legacy/options_spec.lua index fcc39434ff..983d168609 100644 --- a/test/functional/legacy/options_spec.lua +++ b/test/functional/legacy/options_spec.lua @@ -1,20 +1,14 @@ --- Test for ":options". +-- Test if ":options" throws any exception. The options window seems to mess +-- other tests, so restart nvim in the teardown hook local helpers = require('test.functional.helpers') -local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert -local execute, expect = helpers.execute, helpers.expect +local restart, command, clear = helpers.restart, helpers.command, helpers.clear describe('options', function() setup(clear) + teardown(restart) it('is working', function() - insert('result') - - execute("let caught = 'ok'") - execute('try', 'options', 'catch', 'let caught = v:throwpoint . "\n" . v:exception', 'endtry') - execute('buf 1') - execute('$put =caught') - - expect("result\nok") + command('options') end) end) -- cgit