tests: Test gears.geometry.rectangle.are_equal.

This commit is contained in:
Emmanuel Lepage Vallee 2019-06-24 17:11:44 -04:00
parent f60abed1d0
commit 8ffafe4690
1 changed files with 24 additions and 0 deletions

View File

@ -121,6 +121,30 @@ describe("gears.geometry", function()
end) end)
end) end)
describe("rectangle.are_equal", function()
it("with equality", function()
assert.are_equal(true, geo.rectangle.are_equal(
{x=0, y=0, width=10, height=10},
{x=0, y=0, width=10, height=10}
))
end)
it("without equality", function()
assert.are_equal(false, geo.rectangle.are_equal(
{x=0, y=0, width=1, height=1},
{x=2, y=2, width=1, height=1}
))
end)
it("with intersection", function()
assert.are_equal(false, geo.rectangle.are_equal(
{x=0, y=0, width=1, height=1},
{x=0, y=0, width=2, height=2}
))
end)
end)
describe("rectangle.area_remove", function() describe("rectangle.area_remove", function()
-- TODO perhaps it would be better to compare against a cairo.region -- TODO perhaps it would be better to compare against a cairo.region
-- than to have this overly specific tests? -- than to have this overly specific tests?