Test custom fill character.
(self)
| 167 | pad_to_width("Test", 10, align="invalid") |
| 168 | |
| 169 | def test_custom_fill_char(self): |
| 170 | """Test custom fill character.""" |
| 171 | result = pad_to_width("Test", 10, fill_char="-") |
| 172 | assert result == "Test------" |
| 173 | |
| 174 | |
| 175 | class TestRealWorldScenarios: |
nothing calls this directly
no test coverage detected