Skip to content

Commit

Permalink
Changelog for #2509, #2514
Browse files Browse the repository at this point in the history
  • Loading branch information
JonRowe committed Aug 13, 2021
1 parent 88a8dc0 commit 9efdbc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changelog.md
Expand Up @@ -13,6 +13,8 @@ Bug Fixes:
* Fix `ActiveRecord::TestFixture#uses_transaction` by using example description
to replace example name rather than example in our monkey patched
`run_in_transaction?` method. (Stan Lo, #2495)
* Prevent keyword arguments being lost when methods are invoked dynamically
in controller specs. (Josh Cheek, #2509, #2514)

### 5.0.1 / 2021-03-18
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.0.0...v5.0.1)
Expand Down
2 changes: 1 addition & 1 deletion spec/rspec/rails/example/controller_example_group_spec.rb
Expand Up @@ -27,7 +27,7 @@ def method_missing(_name, *_args, **kwargs, &_block); a_method(**kwargs); end

# This example requires prepend so that the `method_missing` definition
# from `ControllerExampleGroup` bubbles up to our artificial one, in reality
# this is likely to be either an internal RSpec dispatch or one from a 3rd
# this is likely to be either an internal RSpec dispatch or one from a 3rd
# party gem.
prepend ControllerExampleGroup
end
Expand Down

0 comments on commit 9efdbc3

Please sign in to comment.