Skip to content

Commit

Permalink
test(duckdb): fix missing part on test
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Sep 19, 2024
1 parent 356d4cd commit a1f7f50
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ibis/backends/duckdb/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ def test_cross_db(tmpdir):
assert t1_from_con2.schema() == t2.schema()
assert t1_from_con2.execute().equals(t2.execute())

foo_t1_from_con2 = con2.table("t1", database="test1.foo")

assert foo_t1_from_con2.schema() == t2.schema()
assert foo_t1_from_con2.execute().equals(t2.execute())


def test_attach_detach(tmpdir):
path1 = str(tmpdir.join("test1.ddb"))
Expand Down

0 comments on commit a1f7f50

Please sign in to comment.