From a94c5f98403e44fa1116c8db56c3deaafa318144 Mon Sep 17 00:00:00 2001 From: Pascal Lais Date: Tue, 10 Mar 2020 12:33:00 +0100 Subject: [PATCH] Move tests to a subdirectory --- test_point.py => test/test_point.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename test_point.py => test/test_point.py (76%) diff --git a/test_point.py b/test/test_point.py similarity index 76% rename from test_point.py rename to test/test_point.py index 72b9b14..b573a4b 100644 --- a/test_point.py +++ b/test/test_point.py @@ -5,4 +5,5 @@ import point def test_init(): pnt = point.Point(10, 20) assert pnt.get_x() == 10 - assert pnt.get_y() == 20 \ No newline at end of file + assert pnt.get_y() == 20 + \ No newline at end of file