()
| 101 | |
| 102 | |
| 103 | def test_to_string_invalid(): |
| 104 | d = pendulum.datetime(1975, 12, 25, 14, 15, 16, tz="local") |
| 105 | |
| 106 | with pytest.raises(ValueError): |
| 107 | d._to_string("invalid") |
| 108 | |
| 109 | |
| 110 | def test_repr(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…