()
| 244 | |
| 245 | |
| 246 | def test_date(): |
| 247 | dt = pendulum.datetime(2016, 10, 20, 10, 40, 34, 123456) |
| 248 | d = dt.date() |
| 249 | assert isinstance(d, pendulum.Date) |
| 250 | assert_date(d, 2016, 10, 20) |
| 251 | |
| 252 | |
| 253 | def test_time(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…