Skip to content

Commit 56bca98

Browse files
author
samuel.oranyeli
committed
add check for spec dataframe
1 parent 7f689a7 commit 56bca98

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

janitor/polars/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from polars.type_aliases import ColumnNameOrSelector
44

5-
from janitor.utils import import_message
5+
from janitor.utils import check, import_message
66

77
from .pivot_longer import _pivot_longer, _pivot_longer_dot_value
88

@@ -467,6 +467,7 @@ def pivot_longer_spec(
467467
Returns:
468468
A polars DataFrame/LazyFrame.
469469
"""
470+
check("spec", spec, [pl.DataFrame])
470471
if ".name" not in spec.columns:
471472
raise KeyError(
472473
"Kindly ensure the spec DataFrame has a `.name` column."

tests/polars/functions/test_pivot_longer_spec.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import pytest
33
from polars.testing import assert_frame_equal
44

5-
import janitor.polars # noqa: F401
65
from janitor.polars import pivot_longer_spec
76

87

@@ -23,6 +22,15 @@ def df_checks():
2322
spec = pl.DataFrame(spec)
2423

2524

25+
def test_spec_is_a_dataframe(df_checks):
26+
"""Raise Error if spec is not a DataFrame."""
27+
with pytest.raises(
28+
TypeError,
29+
match="spec should be one of.+",
30+
):
31+
df_checks.pipe(pivot_longer_spec, spec={".name": "name"})
32+
33+
2634
def test_spec_columns_has_dot_name(df_checks):
2735
"""Raise KeyError if '.name' not in spec's columns."""
2836
with pytest.raises(

0 commit comments

Comments
 (0)