From 1a96b55e12901a2d811c33aff12a9fc3b49ba77d Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 20 Apr 2020 22:17:03 -0500 Subject: [PATCH] simplify docstrings, add misc test class --- triple-dungeon/tests.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/triple-dungeon/tests.py b/triple-dungeon/tests.py index 8aabf0b..8a10fc7 100644 --- a/triple-dungeon/tests.py +++ b/triple-dungeon/tests.py @@ -15,17 +15,22 @@ class GameTests: class SpriteTests: """ - Tests the Sprite classes as well as the sprites, checking that names are correct. + Tests the Sprite classes as well as the available sprites. """ class LevelTests: """ - Tests the Level class for proper integration. + Tests the Level class. """ class DungeonTests: """ - Tests the Dungeon class for + Tests the Dungeon class. + """ + +class MiscTests: + """ + Tests things that don't fit anywhere else. """