Skip to content

Commit

Permalink
update unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-connors-3 committed May 7, 2024
1 parent 013a394 commit 67a15ce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/unit/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def model_node():
metrics=[],
depends_on=DependsOn(),
description="",
primary_key=[],
database="test_db",
schema="test_schema",
alias="bar",
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_contracts_graph_compiled.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ def basic_compiled_dict():
"depends_on": {"macros": [], "nodes": []},
"database": "test_db",
"description": "",
"primary_key": [],
"schema": "test_schema",
"alias": "bar",
"tags": [],
Expand Down
3 changes: 3 additions & 0 deletions tests/unit/test_contracts_graph_parsed.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ def base_parsed_model_dict():
"depends_on": {"macros": [], "nodes": []},
"database": "test_db",
"description": "",
"primary_key": [],
"schema": "test_schema",
"alias": "bar",
"tags": [],
Expand Down Expand Up @@ -220,6 +221,7 @@ def basic_parsed_model_object():
metrics=[],
depends_on=DependsOn(),
description="",
primary_key=[],
database="test_db",
schema="test_schema",
alias="bar",
Expand Down Expand Up @@ -274,6 +276,7 @@ def complex_parsed_model_dict():
"depends_on": {"macros": [], "nodes": ["model.test.bar"]},
"database": "test_db",
"description": "My parsed node",
"primary_key": [],
"schema": "test_schema",
"alias": "bar",
"tags": ["tag"],
Expand Down

0 comments on commit 67a15ce

Please sign in to comment.