Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem Context
Relates to #7
Currently it is not straight forward to use SQLMock with dbt. This PR should solve that by adding dbt support
What changed
Introduced new decorator classes:
dbt_model_metadecorator allows SQLMock to directly interface with dbt models. This decorator links SQLMock mock tables to specific dbt models, enabling the testing of dbt-generated SQL queries within the SQLMock framework.dbt_source_metadecorator was added to handle dbt sources. This is crucial for mocking raw data sources that are used in dbt projects, facilitating the testing of dbt transformations from these sources.dbt_seed_metadecorator enables SQLMock to integrate with dbt seed files. Seeds in dbt are static data sets, and this functionality allows for their representation and manipulation within SQLMock.Introduced a
SQLMockConfigclass that can be used to globally set the path to the dbt manifest file, e.g.:What to look for
Make sure to take a close look at: