(
t: pendulum.Time,
hour: int,
minute: int,
second: int,
microsecond: int | None = None,
)
| 57 | |
| 58 | |
| 59 | def assert_time( |
| 60 | t: pendulum.Time, |
| 61 | hour: int, |
| 62 | minute: int, |
| 63 | second: int, |
| 64 | microsecond: int | None = None, |
| 65 | ) -> None: |
| 66 | assert hour == t.hour |
| 67 | assert minute == t.minute |
| 68 | assert second == t.second |
| 69 | |
| 70 | if microsecond is not None: |
| 71 | assert microsecond == t.microsecond |
| 72 | |
| 73 | |
| 74 | def assert_duration( |
no outgoing calls
no test coverage detected
searching dependent graphs…