()
| 15 | |
| 16 | |
| 17 | def test_format_durations(): |
| 18 | assert format_duration(-0.1) == ("-100ms", "gradient_99") |
| 19 | assert format_duration(0) == ("0ms", "gradient_99") |
| 20 | assert format_duration(0.1) == ("100ms", "gradient_43") |
| 21 | assert format_duration(100) == ("100s", "gradient_00") |
| 22 | |
| 23 | |
| 24 | def test_format_keyvals(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…