aboutsummaryrefslogtreecommitdiff
path: root/spec/test3_spec.lua
blob: e0c4c93555677f29496671de3c167d245d331f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
if not package.path:find("spec/%?%.lua;") then
	print("including spec")
	package.path = "./spec/?.lua;" .. package.path
end
local common = require("common")
_G.assert = assert

describe("physics library",function()
	it("should have methods to create a physics box",function()
		
	end)
end)