Skip to content

Commit

Permalink
update plural resource testcases
Browse files Browse the repository at this point in the history
Signed-off-by: balasubramanian-s <[email protected]>
  • Loading branch information
balasubramanian-s committed Jun 20, 2024
1 parent 4cef55e commit cfc2033
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/resources/google_dataproc_workflow_templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ A `google_dataproc_workflow_templates` is used to test a Google WorkflowTemplate
```
describe google_dataproc_workflow_templates(parent: 'value_parent') do
it { should exist }
its('ids') { should include 'value_id' }
its('names') { should include 'value_name' }
its('create_times') { should include 'value_createtime' }
its('update_times') { should include 'value_updatetime' }
its('dag_timeouts') { should include 'value_dagtimeout' }
end
```
## Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,9 @@

describe google_dataproc_workflow_templates(parent: workflow_template['parent']) do
it { should exist }
its('ids') { should include project_location_workflow_template['id'] }
its('names') { should include project_location_workflow_template['name'] }
its('create_times') { should include project_location_workflow_template['create_time'] }
its('update_times') { should include project_location_workflow_template['update_time'] }
end
end

0 comments on commit cfc2033

Please sign in to comment.