We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3bd713 commit 2a51822Copy full SHA for 2a51822
pandas/tests/extension/base/interface.py
@@ -40,6 +40,16 @@ def test_repr(self, data):
40
df = pd.DataFrame({"A": data})
41
repr(df)
42
43
+ def test_repr_array(self, data):
44
+ # some arrays may be able to assert
45
+ # attributes in the repr
46
+ repr(data)
47
+
48
+ def test_repr_array_long(self, data):
49
+ # some arrays may be able to assert a ... in the repr
50
+ with pd.option_context('display.max_seq_items', 1):
51
52
53
def test_dtype_name_in_info(self, data):
54
buf = StringIO()
55
pd.DataFrame({"A": data}).info(buf=buf)
0 commit comments