Skip to content

Commit

Permalink
Add test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
syou6162 committed Feb 6, 2024
1 parent af200f3 commit 3527a26
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/unit/adapters/test_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ def test_has_unsupported_rule(self, rule, expected):
"model.dummy.table1",
True,
),
(
Table(
name="irrelevant",
node_name="model.dummy.Table1",
database="dummydb",
schema="dummyschema",
),
"model.dummy.Table1",
True,
),
],
)
def test_is_satisfied_by_exact(self, table, rule, expected):
Expand Down

0 comments on commit 3527a26

Please sign in to comment.