Test progress bar with 50% completion.
(self)
| 27 | assert len(bar) == 30 |
| 28 | |
| 29 | def test_half_progress_bar(self): |
| 30 | """Test progress bar with 50% completion.""" |
| 31 | bar = _create_progress_bar(50, 100, width=30) |
| 32 | assert bar == "█" * 15 + "░" * 15 |
| 33 | assert len(bar) == 30 |
| 34 | |
| 35 | def test_small_progress(self): |
| 36 | """Test progress bar with small percentage.""" |
nothing calls this directly
no test coverage detected