Test progress bar with 100% completion.
(self)
| 21 | assert len(bar) == 30 |
| 22 | |
| 23 | def test_full_progress_bar(self): |
| 24 | """Test progress bar with 100% completion.""" |
| 25 | bar = _create_progress_bar(100, 100, width=30) |
| 26 | assert bar == "█" * 30 |
| 27 | assert len(bar) == 30 |
| 28 | |
| 29 | def test_half_progress_bar(self): |
| 30 | """Test progress bar with 50% completion.""" |
nothing calls this directly
no test coverage detected