File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from polars .type_aliases import ColumnNameOrSelector
4
4
5
- from janitor .utils import import_message
5
+ from janitor .utils import check , import_message
6
6
7
7
from .pivot_longer import _pivot_longer , _pivot_longer_dot_value
8
8
@@ -467,6 +467,7 @@ def pivot_longer_spec(
467
467
Returns:
468
468
A polars DataFrame/LazyFrame.
469
469
"""
470
+ check ("spec" , spec , [pl .DataFrame ])
470
471
if ".name" not in spec .columns :
471
472
raise KeyError (
472
473
"Kindly ensure the spec DataFrame has a `.name` column."
Original file line number Diff line number Diff line change 2
2
import pytest
3
3
from polars .testing import assert_frame_equal
4
4
5
- import janitor .polars # noqa: F401
6
5
from janitor .polars import pivot_longer_spec
7
6
8
7
@@ -23,6 +22,15 @@ def df_checks():
23
22
spec = pl .DataFrame (spec )
24
23
25
24
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
+
26
34
def test_spec_columns_has_dot_name (df_checks ):
27
35
"""Raise KeyError if '.name' not in spec's columns."""
28
36
with pytest .raises (
You can’t perform that action at this time.
0 commit comments