From 056a886dc6e00a513cc6cee9a59dc3a9c2be050f Mon Sep 17 00:00:00 2001 From: Dave Connors Date: Thu, 16 Feb 2023 16:43:55 -0600 Subject: [PATCH] added data to all files --- tests/invalid/schema.yml | 24 ++++++++++++++++++++++++ tests/invalid/selectors.yml | 8 ++++++++ tests/valid/selectors.yml | 8 ++++++++ 3 files changed, 40 insertions(+) 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