Skip to content

Commit

Permalink
remove source quoting policy
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebruyn committed Sep 13, 2022
1 parent df0a582 commit b09a8e0
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion tests/functional/adapter/test_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
ref_models__docs_md,
ref_models__ephemeral_copy_sql,
ref_models__schema_yml,
ref_sources__schema_yml,
)


Expand Down Expand Up @@ -67,6 +66,22 @@ def models(self):
select first_name, ct from {{ref('ephemeral_summary')}}
"""

ref_sources__schema_yml = """
version: 2
sources:
- name: my_source
description: "{{ doc('source_info') }}"
loader: a_loader
schema: "{{ var('test_schema') }}"
tables:
- name: my_table
description: "{{ doc('table_info') }}"
identifier: seed
columns:
- name: id
description: "{{ doc('column_info') }}"
"""

return {
"schema.yml": ref_models__schema_yml,
"sources.yml": ref_sources__schema_yml,
Expand Down

0 comments on commit b09a8e0

Please sign in to comment.