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