From 107c338abe9f2f25ecc7587e6c9ff2ce5804e220 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Thu, 16 Jan 2025 10:48:44 +0100 Subject: [PATCH] changed project structure --- .idea/examen2024.iml | 5 ++++- src/__init__.py | 0 ex1_triangles.py => src/ex1_triangles.py | 0 tests/__init__.py | 0 test_ex1.py => tests/test_ex1.py | 2 +- 5 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 src/__init__.py rename ex1_triangles.py => src/ex1_triangles.py (100%) create mode 100644 tests/__init__.py rename test_ex1.py => tests/test_ex1.py (89%) diff --git a/.idea/examen2024.iml b/.idea/examen2024.iml index d8b3f6c..ecb5148 100644 --- a/.idea/examen2024.iml +++ b/.idea/examen2024.iml @@ -1,7 +1,10 @@ - + + + + diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ex1_triangles.py b/src/ex1_triangles.py similarity index 100% rename from ex1_triangles.py rename to src/ex1_triangles.py diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test_ex1.py b/tests/test_ex1.py similarity index 89% rename from test_ex1.py rename to tests/test_ex1.py index 78e2d81..a3899c1 100644 --- a/test_ex1.py +++ b/tests/test_ex1.py @@ -1,6 +1,6 @@ import unittest -from ex1_triangles import countTriangles +from src.ex1_triangles import countTriangles class MyTestCase(unittest.TestCase):