diff --git a/README.md b/README.md index cb18264..7836c87 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ dbt-unit-test (dut) _A tiny framework for testing reusable code inside of dbt models_ -[DBT](www.getdbt.com) (Data Buld Tool) is a great way to maintain reusable sql code. With [macros](https://docs.getdbt.com/docs/building-a-dbt-project/jinja-macros#macros), we can build parametrizable code blocks which can be used in many places while maintaining DRYness. DBT even allows us to package macros as [modules](https://docs.getdbt.com/docs/building-a-dbt-project/package-management) to be maintained independently and even shared with the world as open-source code like the [dbt-utils](https://github.com/fishtown-analytics/dbt-utils) project. +[DBT](www.getdbt.com) (Data Build Tool) is a great way to maintain reusable sql code. With [macros](https://docs.getdbt.com/docs/building-a-dbt-project/jinja-macros#macros), we can build parametrizable code blocks which can be used in many places while maintaining DRYness. DBT even allows us to package macros as [modules](https://docs.getdbt.com/docs/building-a-dbt-project/package-management) to be maintained independently and even shared with the world as open-source code like the [dbt-utils](https://github.com/fishtown-analytics/dbt-utils) project. While reusable code has big advantages, it introduces a single point of failure, which requires careful testing. @@ -260,4 +260,4 @@ The generic version of this code is not so easy on the eyes, but what is importa ) }} ``` -Now we can write many tests for this reusable code, and use it with confidence because we have tested it thoroughly! \ No newline at end of file +Now we can write many tests for this reusable code, and use it with confidence because we have tested it thoroughly!