MCPcopy Index your code
hub / github.com/Codeplain-ai/codeplain / test_empty_progress_bar

Method test_empty_progress_bar

tests/test_cli_output.py:17–21  ·  view source on GitHub ↗

Test progress bar with 0% completion.

(self)

Source from the content-addressed store, hash-verified

15 """Tests for _create_progress_bar function."""
16
17 def test_empty_progress_bar(self):
18 """Test progress bar with 0% completion."""
19 bar = _create_progress_bar(0, 100, width=30)
20 assert bar == "░" * 30
21 assert len(bar) == 30
22
23 def test_full_progress_bar(self):
24 """Test progress bar with 100% completion."""

Callers

nothing calls this directly

Calls 1

_create_progress_barFunction · 0.90

Tested by

no test coverage detected