10 lines
312 B
Python
10 lines
312 B
Python
|
import pandas._testing as tm
|
||
|
|
||
|
|
||
|
class BaseExtensionTests:
|
||
|
|
||
|
assert_equal = staticmethod(tm.assert_equal)
|
||
|
assert_series_equal = staticmethod(tm.assert_series_equal)
|
||
|
assert_frame_equal = staticmethod(tm.assert_frame_equal)
|
||
|
assert_extension_array_equal = staticmethod(tm.assert_extension_array_equal)
|