We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ca911f commit a6f2926Copy full SHA for a6f2926
tests/test__utils.py
@@ -21,6 +21,9 @@
21
_check_invalid_fields,
22
_select_df_lib,
23
_get_tbl_type,
24
+ _get_api_text,
25
+ _get_examples_text,
26
+ _get_api_and_examples_text,
27
)
28
29
@@ -426,3 +429,18 @@ def test_get_tbl_type():
426
429
427
430
assert _get_tbl_type(pd.DataFrame()) == "pandas"
428
431
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