Skip to content

Commit

Permalink
build(deps-dev): bump rspec-rails from 6.1.4 to 7.0.1 (#3951)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump rspec-rails from 6.1.4 to 7.0.1

Bumps [rspec-rails](https://github.com/rspec/rspec-rails) from 6.1.4 to 7.0.1.
- [Changelog](https://github.com/rspec/rspec-rails/blob/main/Changelog.md)
- [Commits](rspec/rspec-rails@v6.1.4...v7.0.1)

---
updated-dependencies:
- dependency-name: rspec-rails
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Resolve `include() is not supported, please supply an argument` by
moving the expected value to the same line as the word include

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: M. Oleske <michael@oleske.engineer>
  • Loading branch information
dependabot[bot] and moleske authored Nov 5, 2024
1 parent d84cd86 commit f2fce21
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ group :test do
gem 'rspec-collection_matchers'
gem 'rspec-instafail'
gem 'rspec-its'
gem 'rspec-rails', '~> 6.1.4'
gem 'rspec-rails', '~> 7.0.1'
gem 'rspec-wait'
gem 'rubocop', '~> 1.67.0'
gem 'rubocop-capybara'
Expand Down
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -444,9 +444,9 @@ GEM
rspec-mocks (~> 3.13.0)
rspec-collection_matchers (1.2.1)
rspec-expectations (>= 2.99.0.beta1)
rspec-core (3.13.0)
rspec-core (3.13.1)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.1)
rspec-expectations (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-instafail (1.0.0)
Expand All @@ -457,10 +457,10 @@ GEM
rspec-mocks (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-rails (6.1.4)
actionpack (>= 6.1)
activesupport (>= 6.1)
railties (>= 6.1)
rspec-rails (7.0.1)
actionpack (>= 7.0)
activesupport (>= 7.0)
railties (>= 7.0)
rspec-core (~> 3.13)
rspec-expectations (~> 3.13)
rspec-mocks (~> 3.13)
Expand Down Expand Up @@ -657,7 +657,7 @@ DEPENDENCIES
rspec-collection_matchers
rspec-instafail
rspec-its
rspec-rails (~> 6.1.4)
rspec-rails (~> 7.0.1)
rspec-wait
rspec_api_documentation (>= 6.1.0)
rubocop (~> 1.67.0)
Expand Down
3 changes: 1 addition & 2 deletions spec/unit/controllers/runtime/routes_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,7 @@ module VCAP::CloudController

expect(last_response).to have_status_code 400
expect(last_response.body).to include 'AssociationNotEmpty'
expect(last_response.body).to include
'Please delete the service_instance associations for your routes'
expect(last_response.body).to include 'Please delete the service_instance associations for your routes'
end
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2925,8 +2925,7 @@ def stub_delete_and_return(status, body)

expect(last_response).to have_status_code 400
expect(last_response.body).to include 'AssociationNotEmpty'
expect(last_response.body).to include
'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
expect(last_response.body).to include 'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
end

context 'and recursive=true' do
Expand Down Expand Up @@ -3018,8 +3017,7 @@ def stub_delete_and_return(status, body)

expect(last_response).to have_status_code 400
expect(last_response.body).to include 'AssociationNotEmpty'
expect(last_response.body).to include
'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
expect(last_response.body).to include 'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
end
end

Expand Down Expand Up @@ -3052,8 +3050,7 @@ def stub_delete_and_return(status, body)

expect(last_response).to have_status_code 400
expect(last_response.body).to include 'AssociationNotEmpty'
expect(last_response.body).to include
'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
expect(last_response.body).to include 'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
end
end

Expand Down Expand Up @@ -3697,8 +3694,7 @@ def stub_delete_and_return(status, body)

expect(last_response).to have_status_code 400
expect(last_response.body).to include 'AssociationNotEmpty'
expect(last_response.body).to include
'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
expect(last_response.body).to include 'Please delete the service_bindings, service_keys, and routes associations for your service_instances'
end

context 'when recursive=true' do
Expand Down

0 comments on commit f2fce21

Please sign in to comment.