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