Initial commit
This commit is contained in:
15
tests/test_comment.py
Normal file
15
tests/test_comment.py
Normal 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()
|
||||
Reference in New Issue
Block a user