aboutsummaryrefslogtreecommitdiffstats
path: root/src/test_locusts.py
blob: 80263154386d58c5f9e52f88d70701ecb6394c6b (plain) (blame)
1
2
3
4
5
6
7
8
9
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()