Intermediate dbt
Mike Metzger
Data Engineer
.sql
file in tests
directoriesorder_total
>=
subtotal
select *
from order
where order_total < subtotal
assert_order_total_gte_subtotal.sql
ref
functionselect *
from {{ ref('order') }}
where order_total < subtotal
dbt test --select <testname>
optionIntermediate dbt