generated from sa-progress/magic-modules
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...e/google_run_project_location_service.erb → ...google_run_service/google_run_service.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<% gcp_project_id = "#{external_attribute(pwd, 'gcp_project_id', doc_generation)}" -%> | ||
<% project_location_service = grab_attributes(pwd)['project_location_service'] -%> | ||
describe google_run_project_location_service(name: <%= doc_generation ? "' #{project_location_service['name']}'":"project_location_service['name']" -%>) do | ||
describe google_run_service(name: <%= doc_generation ? "' #{project_location_service['name']}'":"project_location_service['name']" -%>) do | ||
it { should exist } | ||
its('api_version') { should cmp <%= doc_generation ? "'#{project_location_service['api_version']}'" : "project_location_service['api_version']" -%> } | ||
its('kind') { should cmp <%= doc_generation ? "'#{project_location_service['kind']}'" : "project_location_service['kind']" -%> } | ||
|
||
end | ||
|
||
describe google_run_project_location_service(name: "does_not_exit") do | ||
describe google_run_service(name: "does_not_exit") do | ||
it { should_not exist } | ||
end |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../google_run_project_location_services.erb → ...oogle_run_service/google_run_services.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<% gcp_project_id = "#{external_attribute(pwd, 'gcp_project_id', doc_generation)}" -%> | ||
<% project_location_service = grab_attributes(pwd)['project_location_service'] -%> | ||
describe google_run_project_location_services(parent: <%= doc_generation ? "' #{project_location_service['parent']}'":"project_location_service['parent']" -%>) do | ||
describe google_run_services(parent: <%= doc_generation ? "' #{project_location_service['parent']}'":"project_location_service['parent']" -%>) do | ||
it { should exist } | ||
end |