Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
add hello_world model & test
Browse files Browse the repository at this point in the history
  • Loading branch information
KLarrabee-Arcadia committed May 22, 2024
1 parent b331bcb commit bf5b812
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dbt_spark_example/models/_properties.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
unit_tests:
- name: test_hello_world
model: hello_world
given: []
expect:
rows:
- {hello: world}
1 change: 1 addition & 0 deletions dbt_spark_example/models/hello_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
select 'world' as hello

1 comment on commit bf5b812

@KLarrabee-Arcadia
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.