From 2fd254af8613dba6bbd7bd9f52514229a5287d21 Mon Sep 17 00:00:00 2001 From: Viljami Ilola <+@hix.fi> Date: Sat, 16 Mar 2024 21:06:34 +0200 Subject: dev tools, pytest and pylint --- tests/test_enemies.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/test_enemies.py (limited to 'tests') 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) -- cgit v1.2.3