%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /backups/router/usr/local/lib/python3.11/site-packages/pandas/tests/indexes/datetimes/
Upload File :
Create Path :
Current File : //backups/router/usr/local/lib/python3.11/site-packages/pandas/tests/indexes/datetimes/test_asof.py

from datetime import timedelta

from pandas import (
    Index,
    Timestamp,
    date_range,
    isna,
)
import pandas._testing as tm


class TestAsOf:
    def test_asof_partial(self):
        index = date_range("2010-01-01", periods=2, freq="m")
        expected = Timestamp("2010-02-28")
        result = index.asof("2010-02")
        assert result == expected
        assert not isinstance(result, Index)

    def test_asof(self):
        index = tm.makeDateIndex(100)

        dt = index[0]
        assert index.asof(dt) == dt
        assert isna(index.asof(dt - timedelta(1)))

        dt = index[-1]
        assert index.asof(dt + timedelta(1)) == dt

        dt = index[0].to_pydatetime()
        assert isinstance(index.asof(dt), Timestamp)

Zerion Mini Shell 1.0