Files
PointsBot/tests/test_comment.py
2020-01-15 11:07:13 -08:00

16 lines
285 B
Python

import comment
levels = [
('Helper', 5),
('Trusted Helper', 15),
('Super Helper', 40),
]
tests = [1, 5, 10, 15, 30, 40, 45]
for testpoints in tests:
progbar = comment.progress_bar(testpoints, levels)
print(f'Points: {testpoints}')
print(progbar)
print()