summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorViljami Ilola <+@hix.fi>2024-03-16 21:06:34 +0200
committerViljami Ilola <+@hix.fi>2024-03-16 21:06:34 +0200
commit2fd254af8613dba6bbd7bd9f52514229a5287d21 (patch)
tree25e1fe932bbab88c9346a30ecdcd9bfbc7a2238d /tests
parent3959cfd0c0cab47f863ea5672350ad280b4b7773 (diff)
dev tools, pytest and pylint
Diffstat (limited to 'tests')
-rw-r--r--tests/test_enemies.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_enemies.py b/tests/test_enemies.py
new file mode 100644
index 0000000..24c608c
--- /dev/null
+++ b/tests/test_enemies.py
@@ -0,0 +1,8 @@
+import unittest
+
+from enemies.enemies import EnemySprite
+
+class TestEnemySprite(unittest.TestCase):
+ def test_can_create(self):
+ enemy = EnemySprite()
+ self.assertNotEqual(None, enemy)