Your IP : 216.73.217.90


Current Path : /usr/local/python-3.12/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/
Upload File :
Current File : //usr/local/python-3.12/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_pickle.py

from pandas import timedelta_range
import pandas._testing as tm


class TestPickle:
    def test_pickle_after_set_freq(self):
        tdi = timedelta_range("1 day", periods=4, freq="s")
        tdi = tdi._with_freq(None)

        res = tm.round_trip_pickle(tdi)
        tm.assert_index_equal(res, tdi)