from clusterview.points import Point def test_move_point(): p = Point(1, 2, 8) p.move(1, 1) assert p.x == 2 and p.y == 3