Skip to content

Commit a6f2926

Browse files
committed
Update test__utils.py
1 parent 7ca911f commit a6f2926

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tests/test__utils.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
_check_invalid_fields,
2222
_select_df_lib,
2323
_get_tbl_type,
24+
_get_api_text,
25+
_get_examples_text,
26+
_get_api_and_examples_text,
2427
)
2528

2629

@@ -426,3 +429,18 @@ def test_get_tbl_type():
426429

427430
assert _get_tbl_type(pd.DataFrame()) == "pandas"
428431
assert _get_tbl_type(pl.DataFrame()) == "polars"
432+
433+
434+
def test_get_api_text():
435+
436+
assert isinstance(_get_api_text(), str)
437+
438+
439+
def test_get_examples_text():
440+
441+
assert isinstance(_get_examples_text(), str)
442+
443+
444+
def test_get_api_and_examples_text():
445+
446+
assert isinstance(_get_api_and_examples_text(), str)

0 commit comments

Comments
 (0)