2021-10-17 23:50:21 -04:00
|
|
|
"""
|
|
|
|
Test Client for individual classes in projects
|
|
|
|
"""
|
|
|
|
|
2021-10-18 01:23:55 -04:00
|
|
|
from projects import xubuntu_releases
|
2021-10-14 21:22:39 -04:00
|
|
|
import json # import json to read project info stored in json file
|
2021-10-04 01:18:07 -04:00
|
|
|
|
|
|
|
# main function
|
|
|
|
if __name__ =="__main__":
|
2021-10-14 21:22:39 -04:00
|
|
|
with open("data.json", "r", encoding="utf-8") as file:
|
|
|
|
data = json.load(file)
|
2021-10-18 01:23:55 -04:00
|
|
|
print(xubuntu_releases.check(data, "xubuntu_releases"))
|
2021-10-04 01:18:07 -04:00
|
|
|
|