Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
harels committed Jul 25, 2023
1 parent b034884 commit 8dda447
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

# Tests that a ProjectConfig object can be created with valid parameters
def test_valid_parameters():
project_config = ProjectConfig(dbt_project="path/to/dbt/project")
project_config = ProjectConfig(dbt_project_path="path/to/dbt/project")
assert project_config.dbt_project_path == Path("path/to/dbt/project")
assert project_config.models_path == Path("path/to/dbt/project/models")
assert project_config.seeds_path == Path("path/to/dbt/project/seeds")
assert project_config.snapshots_path == Path("path/to/dbt/project/snapshots")
assert project_config.models_relative_path == Path("path/to/dbt/project/models")
assert project_config.seeds_relative_path == Path("path/to/dbt/project/seeds")
assert project_config.snapshots_relative_path == Path("path/to/dbt/project/snapshots")
assert project_config.manifest_path is None


Expand Down

0 comments on commit 8dda447

Please sign in to comment.