smr/spec/parser_imageboard_spec.lua

13 lines
350 B
Lua
Raw Normal View History

2020-12-23 07:02:02 +01:00
describe("smr imageboard parser",function()
it("should load without error",function()
local parser = require("parser_imageboard")
end)
it("should accept a string and return a string",function()
local parser = require("parser_imageboard")
local input = "Hello, world!"
local output = parser(input)
assert(type(output) == "str
end)
end)