Skip to content

Commit 3ca3945

Browse files
remove remains of old test
1 parent fb5ef7c commit 3ca3945

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

pandas/tests/api/test_api.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -486,16 +486,6 @@ def test_util_in_top_level(self):
486486
pd.util.foo
487487

488488

489-
def test_module():
490-
for name in pd.__all__:
491-
obj = getattr(pd, name)
492-
if inspect.isclass(obj) or inspect.isfunction(obj):
493-
assert obj.__module__ in ("pandas", "pandas._config.config")
494-
495-
assert api.typing.SeriesGroupBy.__module__ == "pandas.api.typing"
496-
assert api.typing.DataFrameGroupBy.__module__ == "pandas.api.typing"
497-
498-
499489
def get_pandas_objects(
500490
module_name: str, recurse: bool, include_functions: bool
501491
) -> list[tuple[str, str, object]]:

0 commit comments

Comments
 (0)