aboutsummaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test_locusts.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test_locusts.py b/src/test_locusts.py
index 68e6df7..8026315 100644
--- a/src/test_locusts.py
+++ b/src/test_locusts.py
@@ -1,9 +1,10 @@
+""""Run tests for locusts.py."""
import unittest
from locusts import introduce_locusts
class TestLocusts(unittest.TestCase):
- def test_introduce_locusts(self):
- self.assertIsNone(introduce_locusts())
+ def test_introduce_locusts(self):
+ self.assertIsNone(introduce_locusts())
if __name__ == '__main__':
- unittest.main() \ No newline at end of file
+ unittest.main()