29 lines
440 B
Lua
29 lines
440 B
Lua
--[[
|
|
Test the home page
|
|
]]
|
|
|
|
|
|
|
|
|
|
describe("smr",function()
|
|
describe("site home page",function()
|
|
it("detours configure",function()
|
|
local s = {}
|
|
local c = false
|
|
function configure(...)
|
|
local args = {...}
|
|
if args[1] == s then
|
|
c = true
|
|
end
|
|
end
|
|
local oldconfigure = configure
|
|
local index_get = require("index_get")
|
|
configure(s)
|
|
assert(c)
|
|
end)
|
|
end)
|
|
describe("author home page",function()
|
|
|
|
end)
|
|
end)
|