File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -97,18 +97,22 @@ def test_as_json_table_type_ext_integer_dtype(self):
9797class TestTableOrient :
9898 @pytest .fixture
9999 def da (self ):
100+ """Fixture for creating a DateArray."""
100101 return DateArray ([dt .date (2021 , 10 , 10 )])
101102
102103 @pytest .fixture
103104 def dc (self ):
105+ """Fixture for creating a DecimalArray."""
104106 return DecimalArray ([decimal .Decimal (10 )])
105107
106108 @pytest .fixture
107109 def sa (self ):
110+ """Fixture for creating a StringDtype array."""
108111 return array (["pandas" ], dtype = "string" )
109112
110113 @pytest .fixture
111114 def ia (self ):
115+ """Fixture for creating an Int64Dtype array."""
112116 return array ([10 ], dtype = "Int64" )
113117
114118 def test_build_date_series (self , da ):
You can’t perform that action at this time.
0 commit comments