mirror-checker/test.py

13 lines
370 B
Python
Raw Normal View History

2021-10-17 23:50:21 -04:00
"""
Test Client for individual classes in projects
"""
from projects import xubuntu_releases
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__":
with open("data.json", "r", encoding="utf-8") as file:
data = json.load(file)
print(xubuntu_releases.check(data, "xubuntu_releases"))
2021-10-04 01:18:07 -04:00