We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93fb369 commit 4ba2f72Copy full SHA for 4ba2f72
pandas_selectable/tests/test_select.py
@@ -56,6 +56,8 @@ def test_dt(dta):
56
assert dta.select.B.dt.is_quarter_start.equals(dta.loc[[0]])
57
assert len(dta.select.B.dt.is_year_end) == 0
58
assert dta.select.B.dt.is_year_start.equals(dta.loc[[0]])
59
+ assert len(dta.select.B.dt.day == 15) == 1
60
+ assert len(dta.select.B.dt.month == 2) == 0
61
62
63
def test_index(dta):
0 commit comments