-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtests.py
48 lines (31 loc) · 1015 Bytes
/
tests.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import unittest
import data_utils
import display_results
import download_bot_listing
import inventory_utils
import personal_info
import trade_finder
import utils
class TestPersonalInfoMethods(unittest.TestCase):
def test_main(self):
assert personal_info.main()
class TestUtilsMethods(unittest.TestCase):
def test_main(self):
assert utils.main()
class TestInventoryUtilsMethods(unittest.TestCase):
def test_main(self):
assert inventory_utils.main()
class TestDownloadBotListingMethods(unittest.TestCase):
def test_main(self):
assert download_bot_listing.main()
class TestTradeFinderMethods(unittest.TestCase):
def test_main(self):
assert trade_finder.main(self_test=True)
class TestDataUtilsMethods(unittest.TestCase):
def test_main(self):
assert data_utils.main()
class TestDisplayResultsMethods(unittest.TestCase):
def test_main(self):
assert display_results.main()
if __name__ == '__main__':
unittest.main()