mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2025-03-11 02:52:29 +01:00
tests/new: fix Vector3 tests
This commit is contained in:
@ -7,18 +7,18 @@ describe("Vector3.add", function()
|
||||
Vector3.new(3, 4, 5)
|
||||
)
|
||||
end)
|
||||
it("should throw an error on invalid x", function()
|
||||
assert.has.errors(function()
|
||||
it("should not throw an error on invalid x", function()
|
||||
assert.has_no.errors(function()
|
||||
Vector3.new("cheese", 4, 5)
|
||||
end)
|
||||
end)
|
||||
it("should throw an error on invalid y", function()
|
||||
assert.has.errors(function()
|
||||
it("should not throw an error on invalid y", function()
|
||||
assert.has_no.errors(function()
|
||||
Vector3.new(4, "cheese", 5)
|
||||
end)
|
||||
end)
|
||||
it("should throw an error on invalid z", function()
|
||||
assert.has.errors(function()
|
||||
it("should not throw an error on invalid z", function()
|
||||
assert.has_no.errors(function()
|
||||
Vector3.new(66, 2, "cheese")
|
||||
end)
|
||||
end)
|
||||
|
Reference in New Issue
Block a user