MCPcopy Create free account
hub / github.com/Codeplain-ai/codeplain / test_custom_width

Method test_custom_width

tests/test_cli_output.py:48–52  ·  view source on GitHub ↗

Test progress bar with custom width.

(self)

Source from the content-addressed store, hash-verified

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
55class TestDisplayCreditLine:

Callers

nothing calls this directly

Calls 1

_create_progress_barFunction · 0.90

Tested by

no test coverage detected