-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent the clearing of instance variables after each test request wi…
…th Rails 7
- Loading branch information
Jolyon Pawlyn
committed
Dec 16, 2021
1 parent
c1acc24
commit 5d64851
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
# HACK: to prevent the resetting of instance variables after each request in Rails 7 | ||
# see https://github.com/rails/rails/pull/43735 | ||
if Rails::VERSION::MAJOR >= 7 | ||
module ActionController | ||
module Testing | ||
module Functional | ||
def clear_instance_variables_between_requests; end | ||
end | ||
end | ||
end | ||
end |
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