aboutsummaryrefslogtreecommitdiffstats
path: root/src/test_locusts.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/test_locusts.py')
-rw-r--r--src/test_locusts.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test_locusts.py b/src/test_locusts.py
new file mode 100644
index 0000000..8026315
--- /dev/null
+++ b/src/test_locusts.py
@@ -0,0 +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())
+
+if __name__ == '__main__':
+ unittest.main()