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 882c02f commit 6dd0917Copy full SHA for 6dd0917
pandas/tests/series/conftest.py
@@ -1,5 +1,6 @@
1
import pytest
2
3
+import pandas as pd
4
import pandas.util.testing as tm
5
6
@@ -31,3 +32,11 @@ def object_series():
31
32
s = tm.makeObjectSeries()
33
s.name = "objects"
34
return s
35
+
36
37
+@pytest.fixture
38
+def empty_series():
39
+ """
40
+ Fixture for Series that is empty
41
42
+ return pd.Series([], index=[])
0 commit comments