blob: d757a0c0613ecd16a68470fcacfd356056977adc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
describe("ecs module", function()
it("should require without errors",function()
require("ecs")
end)
it("should serialize correctly",function()
local ecs = require("ecs")
ent = ecs.Entity(nil,{
})
end)
end)
|