()
| 94 | |
| 95 | |
| 96 | def test_fromtimestamp(): |
| 97 | p = pendulum.DateTime.fromtimestamp(0, pendulum.UTC) |
| 98 | dt = datetime.fromtimestamp(0, pendulum.UTC) |
| 99 | |
| 100 | assert p == dt |
| 101 | |
| 102 | |
| 103 | def test_utcfromtimestamp(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…