diff options
| author | Alex Pickering <alex@cogarr.net> | 2026-02-01 13:14:32 -0600 |
|---|---|---|
| committer | Alexander M Pickering <alex@cogarr.net> | 2026-02-01 13:14:32 -0600 |
| commit | 3a975db66a3711f34e8b64bb27a8eaca79fdeca9 (patch) | |
| tree | fcc12f8f9d638ff575c1963796de76b7628854b4 /spec/ecs_spec.lua | |
| download | ggj26-master.tar.gz ggj26-master.tar.bz2 ggj26-master.zip | |
Diffstat (limited to 'spec/ecs_spec.lua')
| -rw-r--r-- | spec/ecs_spec.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/ecs_spec.lua b/spec/ecs_spec.lua new file mode 100644 index 0000000..d757a0c --- /dev/null +++ b/spec/ecs_spec.lua @@ -0,0 +1,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) |
