()
| 30 | |
| 31 | |
| 32 | def test_measure(): |
| 33 | console = Console(width=120) |
| 34 | bar = Bar(size=100, begin=11, end=62) |
| 35 | measurement = bar.__rich_measure__(console, console.options) |
| 36 | assert measurement.minimum == 4 |
| 37 | assert measurement.maximum == 120 |
| 38 | |
| 39 | |
| 40 | def test_zero_total(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…