diff --git a/tests/invalid/schema.yml b/tests/invalid/schema.yml index e69de29..7cb767b 100644 --- a/tests/invalid/schema.yml +++ b/tests/invalid/schema.yml @@ -0,0 +1,24 @@ +# this file was generated with dbt init with dbt 1.2.1 + +version: 2 + +models: + - name: my_first_dbt_model + description: "A starter dbt model" + jarrod: saltalamachhia + columns: + - name: id + description: "The primary key for this table" + nomar: garciaparra + tests: + - unique + - not_null + + - name: my_second_dbt_model + description: "A starter dbt model" + columns: + - name: id + description: "The primary key for this table" + tests: + - unique + - not_null diff --git a/tests/invalid/selectors.yml b/tests/invalid/selectors.yml index e69de29..a21a0e2 100644 --- a/tests/invalid/selectors.yml +++ b/tests/invalid/selectors.yml @@ -0,0 +1,8 @@ +selector: + - name: nodes_to_joy + definition: + method_of_attack: tag + value: nightly + dont_include: + - "@tag:daily" + diff --git a/tests/valid/selectors.yml b/tests/valid/selectors.yml index e69de29..ff62f5e 100644 --- a/tests/valid/selectors.yml +++ b/tests/valid/selectors.yml @@ -0,0 +1,8 @@ +selectors: + - name: nodes_to_joy + definition: + method: tag + value: nightly + exclude: + - "@tag:daily" + \ No newline at end of file