File tree 1 file changed +4
-0
lines changed
pandas/tests/indexes/interval
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ class TestFromArrays(ConstructorTests):
210
210
211
211
@pytest .fixture
212
212
def constructor (self ):
213
+ """Fixture for IntervalIndex.from_arrays constructor"""
213
214
return IntervalIndex .from_arrays
214
215
215
216
def get_kwargs_from_breaks (self , breaks , closed = "right" ):
@@ -282,6 +283,7 @@ class TestFromBreaks(ConstructorTests):
282
283
283
284
@pytest .fixture
284
285
def constructor (self ):
286
+ """Fixture for IntervalIndex.from_breaks constructor"""
285
287
return IntervalIndex .from_breaks
286
288
287
289
def get_kwargs_from_breaks (self , breaks , closed = "right" ):
@@ -320,6 +322,7 @@ class TestFromTuples(ConstructorTests):
320
322
321
323
@pytest .fixture
322
324
def constructor (self ):
325
+ """Fixture for IntervalIndex.from_tuples constructor"""
323
326
return IntervalIndex .from_tuples
324
327
325
328
def get_kwargs_from_breaks (self , breaks , closed = "right" ):
@@ -370,6 +373,7 @@ class TestClassConstructors(ConstructorTests):
370
373
371
374
@pytest .fixture
372
375
def constructor (self ):
376
+ """Fixture for IntervalIndex class constructor"""
373
377
return IntervalIndex
374
378
375
379
def get_kwargs_from_breaks (self , breaks , closed = "right" ):
You can’t perform that action at this time.
0 commit comments