diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-16 21:06:34 +0200 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-16 21:06:34 +0200 |
commit | 2fd254af8613dba6bbd7bd9f52514229a5287d21 (patch) | |
tree | 25e1fe932bbab88c9346a30ecdcd9bfbc7a2238d /tests/test_enemies.py | |
parent | 3959cfd0c0cab47f863ea5672350ad280b4b7773 (diff) |
dev tools, pytest and pylint
Diffstat (limited to 'tests/test_enemies.py')
-rw-r--r-- | tests/test_enemies.py | 8 |
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) |