Move tests to a subdirectory
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-03-10 12:33:00 +01:00
parent 76aff48b34
commit a94c5f9840

9
test/test_point.py Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/python3
import point
def test_init():
pnt = point.Point(10, 20)
assert pnt.get_x() == 10
assert pnt.get_y() == 20