Skip to content

Commit

Permalink
fix ls tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Aug 14, 2020
1 parent f3f713a commit c8453d8
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion test/integration/047_dbt_ls_test/test_ls.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ def expect_snapshot_output(self):
'strategy': 'timestamp',
'updated_at': 'updated_at',
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'my_snapshot',
'resource_type': 'snapshot',
Expand Down Expand Up @@ -117,6 +120,9 @@ def expect_analyses_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'a',
'resource_type': 'analysis',
Expand Down Expand Up @@ -146,6 +152,9 @@ def expect_model_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'ephemeral',
'resource_type': 'model',
Expand All @@ -167,6 +176,9 @@ def expect_model_output(self):
'persist_docs': {},
'full_refresh': None,
'incremental_strategy': 'delete+insert',
'database': None,
'schema': None,
'alias': None,
},
'alias': 'incremental',
'resource_type': 'model',
Expand All @@ -187,6 +199,9 @@ def expect_model_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'inner',
'resource_type': 'model',
Expand All @@ -207,6 +222,9 @@ def expect_model_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'outer',
'resource_type': 'model',
Expand Down Expand Up @@ -238,6 +256,9 @@ def expect_model_ephemeral_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'outer',
'resource_type': 'model',
Expand Down Expand Up @@ -288,6 +309,9 @@ def expect_seed_output(self):
'persist_docs': {},
'quote_columns': False,
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'seed',
'resource_type': 'seed',
Expand Down Expand Up @@ -318,10 +342,12 @@ def expect_test_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'not_null_outer_id',
'resource_type': 'test',

},
{
'name': 't',
Expand All @@ -340,6 +366,9 @@ def expect_test_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 't',
'resource_type': 'test',
Expand All @@ -361,6 +390,9 @@ def expect_test_output(self):
'column_types': {},
'persist_docs': {},
'full_refresh': None,
'database': None,
'schema': None,
'alias': None,
},
'alias': 'unique_outer_id',
'resource_type': 'test',
Expand Down

0 comments on commit c8453d8

Please sign in to comment.