2017-03-11 03:28:18 -07:00
|
|
|
local helpers = require("test.unit.helpers")(after_each)
|
2017-03-04 18:02:45 -07:00
|
|
|
local itp = helpers.gen_itp(it)
|
2016-09-04 00:54:41 -07:00
|
|
|
|
|
|
|
local to_cstr = helpers.to_cstr
|
|
|
|
local eq = helpers.eq
|
|
|
|
|
2022-08-20 02:26:44 -07:00
|
|
|
local option = helpers.cimport("./src/nvim/optionstr.h")
|
2016-09-04 00:54:41 -07:00
|
|
|
|
|
|
|
local check_ff_value = function(ff)
|
|
|
|
return option.check_ff_value(to_cstr(ff))
|
|
|
|
end
|
|
|
|
|
|
|
|
describe('check_ff_value', function()
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('views empty string as valid', function()
|
2016-09-04 00:54:41 -07:00
|
|
|
eq(1, check_ff_value(""))
|
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('views "unix", "dos" and "mac" as valid', function()
|
2016-09-04 00:54:41 -07:00
|
|
|
eq(1, check_ff_value("unix"))
|
|
|
|
eq(1, check_ff_value("dos"))
|
|
|
|
eq(1, check_ff_value("mac"))
|
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('views "foo" as invalid', function()
|
2016-09-04 00:54:41 -07:00
|
|
|
eq(0, check_ff_value("foo"))
|
|
|
|
end)
|
|
|
|
end)
|