()
| 101 | |
| 102 | |
| 103 | def test_utcfromtimestamp(): |
| 104 | p = pendulum.DateTime.utcfromtimestamp(0) |
| 105 | dt = datetime.utcfromtimestamp(0) |
| 106 | |
| 107 | assert p == dt |
| 108 | |
| 109 | |
| 110 | def test_fromordinal(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…