Skip to content

Commit 6058917

Browse files
committed
add one columb table no lib error
1 parent beeaad5 commit 6058917

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tests/test_dependencies.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Tests to be run with pandas uninstalled.
22

33
import pytest
4+
from great_tables._formats_vals import _make_one_col_table
45

56
# mark file as nopandas
67
pytestmark = pytest.mark.no_pandas
@@ -18,3 +19,9 @@ def test_no_pandas_import_exibble_raises():
1819

1920
def test_no_pandas_import():
2021
from great_tables import GT
22+
23+
24+
def test_one_column_table_no_lib() -> None:
25+
vals = [1, 2, 3]
26+
27+
_make_one_col_table(vals=vals)

0 commit comments

Comments
 (0)