new HV test

This commit is contained in:
VorTechnix 2023-12-21 08:33:44 -08:00
parent 855a0fdfef
commit b3de30f0cb
No known key found for this signature in database
GPG Key ID: 091E91A69545D5BA
1 changed files with 12 additions and 2 deletions

View File

@ -29,10 +29,20 @@ describe("parse_axes", function()
assert.are.same(Vector3.new(10, 10, 10), maxv)
end)
it("should work for h and v", function()
local minv, maxv = parse_axes({
"h", "3",
"-v", "4",
}, facing_dirs.x_pos)
assert.is.truthy(minv)
assert.are.same(Vector3.new(-3, -4, -3), minv)
assert.are.same(Vector3.new(3, 4, 3), maxv)
end)
it("should work on directions and their abriviations", function()
local minv, maxv = parse_axes({
"l", "3", -- +z
"-r", "-3", -- +z
"-right", "-3", -- +z
"b", "-10", -- -x
}, facing_dirs.x_pos)
assert.is.truthy(minv)
@ -155,4 +165,4 @@ describe("parse_axes", function()
assert.are.same("string", type(maxv))
end)
end)
end)