2016-10-08 08:55:55 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2017-04-08 14:12:26 -07:00
|
|
|
local clear, command, write_file = helpers.clear, helpers.command, helpers.write_file
|
2016-10-08 08:55:55 -07:00
|
|
|
local eq, eval = helpers.eq, helpers.eval
|
|
|
|
|
|
|
|
describe("modeline", function()
|
|
|
|
local tempfile = helpers.tmpname()
|
|
|
|
before_each(clear)
|
|
|
|
|
|
|
|
after_each(function()
|
|
|
|
os.remove(tempfile)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('does not crash with a large version number', function()
|
|
|
|
write_file(tempfile, 'vim100000000000000000000000')
|
2017-04-08 14:12:26 -07:00
|
|
|
command('e! ' .. tempfile)
|
2016-10-08 08:55:55 -07:00
|
|
|
|
|
|
|
eq(2, eval('1+1')) -- Still alive?
|
|
|
|
end)
|
|
|
|
end)
|