mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-26 17:12:59 +00:00
34 lines
690 B
Lua
34 lines
690 B
Lua
local Vector3 = require("worldeditadditions.utils.vector3")
|
|
|
|
local function format_map(map)
|
|
local result = {}
|
|
for key, value in pairs(map) do
|
|
table.insert(result, key.."\t"..tostring(value))
|
|
end
|
|
return table.concat(result, "\n")
|
|
end
|
|
|
|
|
|
describe("Vector3.area", function()
|
|
it("should work with a positive vector", function()
|
|
local a = Vector3.new(3, 3, 3)
|
|
assert.are.equal(
|
|
27,
|
|
a:area()
|
|
)
|
|
end)
|
|
it("should work with a negative vector", function()
|
|
local a = Vector3.new(-4, -4, -4)
|
|
assert.are.equal(
|
|
-64,
|
|
a:area()
|
|
)
|
|
end)
|
|
it("should work with a mixed vector", function()
|
|
local a = Vector3.new(-3, 3, -3)
|
|
assert.are.equal(
|
|
27,
|
|
a:area()
|
|
)
|
|
end)
|
|
end)
|