Test progress bar with custom width.
(self)
| 46 | assert len(bar) == 30 |
| 47 | |
| 48 | def test_custom_width(self): |
| 49 | """Test progress bar with custom width.""" |
| 50 | bar = _create_progress_bar(5, 10, width=10) |
| 51 | assert len(bar) == 10 |
| 52 | assert bar == "█" * 5 + "░" * 5 |
| 53 | |
| 54 | |
| 55 | class TestDisplayCreditLine: |
nothing calls this directly
no test coverage detected