()
| 48 | |
| 49 | |
| 50 | def test_fluid_second_setter(): |
| 51 | d = pendulum.datetime(2016, 7, 2, 0, 41, 20) |
| 52 | new = d.set(second=49) |
| 53 | assert isinstance(new, datetime) |
| 54 | assert new.second == 49 |
| 55 | assert d.second == 20 |
| 56 | |
| 57 | |
| 58 | def test_fluid_microsecond_setter(): |