2023-12-04 15:32:39 -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
|
2023-12-04 15:32:39 -07:00
|
|
|
local eq = helpers.eq
|
2016-09-04 00:54:41 -07:00
|
|
|
|
2023-12-04 15:32:39 -07:00
|
|
|
local optionstr = helpers.cimport('./src/nvim/optionstr.h')
|
2016-09-04 00:54:41 -07:00
|
|
|
|
|
|
|
local check_ff_value = function(ff)
|
2023-09-29 23:41:34 -07:00
|
|
|
return optionstr.check_ff_value(to_cstr(ff))
|
2016-09-04 00:54:41 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
describe('check_ff_value', function()
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('views empty string as valid', function()
|
2023-12-04 15:32:39 -07:00
|
|
|
eq(1, check_ff_value(''))
|
2016-09-04 00:54:41 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('views "unix", "dos" and "mac" as valid', function()
|
2023-12-04 15:32:39 -07:00
|
|
|
eq(1, check_ff_value('unix'))
|
|
|
|
eq(1, check_ff_value('dos'))
|
|
|
|
eq(1, check_ff_value('mac'))
|
2016-09-04 00:54:41 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('views "foo" as invalid', function()
|
2023-12-04 15:32:39 -07:00
|
|
|
eq(0, check_ff_value('foo'))
|
2016-09-04 00:54:41 -07:00
|
|
|
end)
|
|
|
|
end)
|