3
0
Fork 0
wuttjamaican/tests/test_progress.py
Lance Edgar a6bb538ce9 fix: format all code with black
and from now on should not deviate from that...
2025-08-30 21:25:44 -05:00

27 lines
528 B
Python

# -*- coding: utf-8; -*-
from unittest import TestCase
from wuttjamaican import progress as mod
class TestProgressBase(TestCase):
def test_basic(self):
# sanity / coverage check
prog = mod.ProgressBase("testing", 2)
prog.update(1)
prog.update(2)
prog.finish()
class TestConsoleProgress(TestCase):
def test_basic(self):
# sanity / coverage check
prog = mod.ConsoleProgress("testing", 2)
prog.update(1)
prog.update(2)
prog.finish()