1
0
Fork 0
inkscape/share/extensions/tests/test_voronoi.py
Daniel Baumann 02d935e272
Adding upstream version 1.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 23:40:13 +02:00

9 lines
201 B
Python

# coding=utf-8
from voronoi import Site
class TestVoronoiSiteBasic(object):
def test_site_basic(self):
new_site = Site(1, 2)
assert new_site.x == 1
assert new_site.y == 2