All checks were successful
continuous-integration/drone/push Build is passing
8 lines
138 B
Python
8 lines
138 B
Python
#!/usr/bin/python3
|
|
|
|
import point
|
|
|
|
def test_init():
|
|
pnt = point.Point(10, 20)
|
|
assert pnt.get_x() == 10
|
|
assert pnt.get_y() == 20 |