-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_snail.py
29 lines (20 loc) · 851 Bytes
/
test_snail.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import unittest
from src.snail import can_crawl
class MyTestCase(unittest.TestCase):
def test_example1(self):
rubber_band = 10
snail_speed = 2 # 2 unit minute
rate_of_rubber_band = 1 # 1 unit minute
self.assertEqual(True, can_crawl(rubber_band, snail_speed, rate_of_rubber_band))
def test_example2(self):
rubber_band = 100
snail_speed = 1 # 2 unit minute
rate_of_rubber_band = 2 # 1 unit minute
self.assertEqual(False, can_crawl(rubber_band, snail_speed, rate_of_rubber_band))
def test_example3(self):
rubber_band = 100000
snail_speed = 0.1 # 2 unit minute
rate_of_rubber_band = 0.05 # 1 unit minute
self.assertEqual(False, can_crawl(rubber_band, snail_speed, rate_of_rubber_band))
if __name__ == '__main__':
unittest.main()