File size: 273 Bytes
dc134b9 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import urllib3
from functions import calculate_results
def test_scores():
with urllib3.PoolManager() as pool:
results = calculate_results("T145/ZEUS-8B-V2", pool)
# If any calculation is off, this should be wrong
assert(results["Average"] == 30.07)
|