Initial commit

This commit is contained in:
Collin R
2020-01-15 11:07:13 -08:00
commit 3f2d754756
13 changed files with 1468 additions and 0 deletions

15
tests/test_comment.py Normal file
View File

@@ -0,0 +1,15 @@
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()