diff --git a/ibis/backends/tests/test_dbapi.py b/ibis/backends/tests/test_dbapi.py new file mode 100644 index 0000000000000..8893748c32bc9 --- /dev/null +++ b/ibis/backends/tests/test_dbapi.py @@ -0,0 +1,6 @@ +from __future__ import annotations + + +def test_from_connection(con): + new_con = type(con).from_connection(con.con) + assert {"astronauts", "batting", "diamonds"} <= set(new_con.list_tables())