()
| 6 | |
| 7 | |
| 8 | def test_fluid_year_setter(): |
| 9 | d = pendulum.Date(2016, 10, 20) |
| 10 | new = d.set(year=1995) |
| 11 | |
| 12 | assert_date(new, 1995, 10, 20) |
| 13 | assert new.year == 1995 |
| 14 | |
| 15 | |
| 16 | def test_fluid_month_setter(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…