test: format

This commit is contained in:
Case Nelson
2016-04-10 19:47:21 -06:00
committed by Justin M. Keyes
parent 4a200ceafa
commit c4117d4b2f

View File

@@ -64,8 +64,7 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
args = args..', "RpcCommand"' args = args..', "RpcCommand"'
end) end)
describe('without options', function() it('without options', function()
it('ok', function()
call(fn, args..', {}') call(fn, args..', {}')
local function on_setup() local function on_setup()
command('RpcCommand') command('RpcCommand')
@@ -78,10 +77,8 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with nargs', function() it('with nargs', function()
it('ok', function()
call(fn, args..', {"nargs": "*"}') call(fn, args..', {"nargs": "*"}')
local function on_setup() local function on_setup()
command('RpcCommand arg1 arg2 arg3') command('RpcCommand arg1 arg2 arg3')
@@ -95,10 +92,8 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with range', function() it('with range', function()
it('ok', function()
call(fn,args..', {"range": ""}') call(fn,args..', {"range": ""}')
local function on_setup() local function on_setup()
command('1,1RpcCommand') command('1,1RpcCommand')
@@ -112,10 +107,8 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with nargs/range', function() it('with nargs/range', function()
it('ok', function()
call(fn, args..', {"nargs": "1", "range": ""}') call(fn, args..', {"nargs": "1", "range": ""}')
local function on_setup() local function on_setup()
command('1,1RpcCommand arg') command('1,1RpcCommand arg')
@@ -130,10 +123,8 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with nargs/count', function() it('with nargs/count', function()
it('ok', function()
call(fn, args..', {"nargs": "1", "range": "5"}') call(fn, args..', {"nargs": "1", "range": "5"}')
local function on_setup() local function on_setup()
command('5RpcCommand arg') command('5RpcCommand arg')
@@ -148,10 +139,8 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with nargs/count/bang', function() it('with nargs/count/bang', function()
it('ok', function()
call(fn, args..', {"nargs": "1", "range": "5", "bang": ""}') call(fn, args..', {"nargs": "1", "range": "5", "bang": ""}')
local function on_setup() local function on_setup()
command('5RpcCommand! arg') command('5RpcCommand! arg')
@@ -167,10 +156,8 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with nargs/count/bang/register', function() it('with nargs/count/bang/register', function()
it('ok', function()
call(fn, args..', {"nargs": "1", "range": "5", "bang": "",'.. call(fn, args..', {"nargs": "1", "range": "5", "bang": "",'..
' "register": ""}') ' "register": ""}')
local function on_setup() local function on_setup()
@@ -188,10 +175,8 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with nargs/count/bang/register/eval', function() it('with nargs/count/bang/register/eval', function()
it('ok', function()
call(fn, args..', {"nargs": "1", "range": "5", "bang": "",'.. call(fn, args..', {"nargs": "1", "range": "5", "bang": "",'..
' "register": "", "eval": "@<reg>"}') ' "register": "", "eval": "@<reg>"}')
local function on_setup() local function on_setup()
@@ -213,7 +198,6 @@ local function command_specs_for(fn, sync, first_arg_factory, init)
end) end)
end) end)
end) end)
end)
end end
@@ -236,8 +220,7 @@ local function autocmd_specs_for(fn, sync, first_arg_factory, init)
args = args..', "BufEnter"' args = args..', "BufEnter"'
end) end)
describe('without options', function() it('without options', function()
it('ok', function()
call(fn, args..', {}') call(fn, args..', {}')
local function on_setup() local function on_setup()
command('doautocmd BufEnter x.c') command('doautocmd BufEnter x.c')
@@ -250,10 +233,8 @@ local function autocmd_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with eval', function() it('with eval', function()
it('ok', function()
call(fn, args..[[, {'eval': 'expand("<afile>")'}]]) call(fn, args..[[, {'eval': 'expand("<afile>")'}]])
local function on_setup() local function on_setup()
command('doautocmd BufEnter x.c') command('doautocmd BufEnter x.c')
@@ -269,7 +250,6 @@ local function autocmd_specs_for(fn, sync, first_arg_factory, init)
end) end)
end) end)
end) end)
end)
end end
@@ -292,8 +272,7 @@ local function function_specs_for(fn, sync, first_arg_factory, init)
args = args..', "TestFunction"' args = args..', "TestFunction"'
end) end)
describe('without options', function() it('without options', function()
it('ok', function()
call(fn, args..', {}') call(fn, args..', {}')
local function on_setup() local function on_setup()
if sync then if sync then
@@ -311,10 +290,8 @@ local function function_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with eval', function() it('with eval', function()
it('ok', function()
call(fn, args..[[, {'eval': '2 + 2'}]]) call(fn, args..[[, {'eval': '2 + 2'}]])
local function on_setup() local function on_setup()
if sync then if sync then
@@ -332,10 +309,8 @@ local function function_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with range', function() it('with range', function()
it('ok', function()
call(fn, args..[[, {'range': ''}]]) call(fn, args..[[, {'range': ''}]])
local function on_setup() local function on_setup()
command('%call TestFunction(1, "a", ["b", "c"])') command('%call TestFunction(1, "a", ["b", "c"])')
@@ -349,9 +324,8 @@ local function function_specs_for(fn, sync, first_arg_factory, init)
runx(sync, handler, on_setup) runx(sync, handler, on_setup)
end) end)
end)
describe('with eval/range', function() it('with eval/range', function()
it('ok', function()
call(fn, args..[[, {'eval': '4', 'range': ''}]]) call(fn, args..[[, {'eval': '4', 'range': ''}]])
local function on_setup() local function on_setup()
command('%call TestFunction(1, "a", ["b", "c"])') command('%call TestFunction(1, "a", ["b", "c"])')
@@ -367,7 +341,6 @@ local function function_specs_for(fn, sync, first_arg_factory, init)
end) end)
end) end)
end) end)
end)
end end
local function channel() local function channel()