()
| 14 | |
| 15 | |
| 16 | def test_fluid_month_setter(): |
| 17 | d = pendulum.Date(2016, 7, 2) |
| 18 | new = d.set(month=11) |
| 19 | |
| 20 | assert new.month == 11 |
| 21 | assert d.month == 7 |
| 22 | |
| 23 | |
| 24 | def test_fluid_day_setter(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…