forked from Ada-C18/viewing-party
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay_tester.py
42 lines (33 loc) · 945 Bytes
/
play_tester.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
# import source code
from viewing_party.party import *
# import test data
from tests.test_constants import *
# import "pretty-print" library
import pprint
pp = pprint.PrettyPrinter(indent=4)
# play testing section
print("\n-----Wave 01 test data-----")
# pp.pprint(HORROR_1)
# pp.pprint(FANTASY_1)
# pp.pprint(FANTASY_2)
# print(create_movie("title", "genre", "rating"))
janes_data = {
"watchlist": [{
"title": MOVIE_TITLE_1,
"genre": GENRE_1,
"rating": RATING_1
}],
"watched": []
}
print(janes_data)
# watch_movie(janes_data, MOVIE_TITLE_1)
# print("\n-----Wave 02 user_data-----")
# pp.pprint(clean_wave_2_data())
#print("\n-----Wave 03 user_data-----")
#pp.pprint(clean_wave_3_data())
# Wave 04 user data
#print("\n-----Wave 04 user_data-----")
#pp.pprint(clean_wave_4_data())
# Wave 05 user data
#print("\n-----Wave 05 user_data-----")
#pp.pprint(clean_wave_5_data())