You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lua-ngcp-kamailio/mocks/sr.lua

17 lines
323 B

#!/usr/bin/env lua5.1
require 'lemock'
mc = lemock.controller()
srMock = {
__class__ = 'srMock',
pv = mc:mock()
}
srMock_MT = { __index = srMock, __newindex = mc:mock() }
function srMock:new()
--print("srMock:new")
local t = {}
setmetatable(t, srMock_MT)
return t
end
--EOF