Skip to content

Commit 6702220

Browse files
committed
adding int test
1 parent 2677c97 commit 6702220

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/integration/fixtures/test_catalog.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ def test_schema_fixture(make_schema):
1717
logger.info(f"Created new schema: {make_schema()}")
1818

1919

20+
def test_managed_schema_fixture(make_schema, make_random, env_or_skip):
21+
schema_name = f"dummy_s{make_random(4)}".lower()
22+
schema_location = f"{env_or_skip('TEST_MOUNT_CONTAINER')}/a/{schema_name}"
23+
logger.info(f"Created new schema: {make_schema(location = schema_location)}")
24+
25+
2026
def test_new_managed_table_in_new_schema(make_table):
2127
logger.info(f"Created new managed table in new schema: {make_table()}")
2228

0 commit comments

Comments
 (0)