Feat: add tables method to fs_repository

This commit is contained in:
2025-01-05 07:01:03 +01:00
parent d1c1b7420d
commit ed8f91d78b
2 changed files with 6 additions and 1 deletions

View File

@@ -59,6 +59,7 @@ def test_list_schema(location, repository):
def test_list_tables_schema(repository):
assert repository.schema("schema").tables == ["username", "recovery", "salary"]
assert repository.tables(schema="schema") == ["username", "recovery", "salary"]
def test_describe_table(location, repository):