mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Extend test_can_write_while_reading_from_replicas_if_explicit
- Ensure that explicit method call `connected_to` with `prevent_writes: false` turns off 'preventing writes' in the passed block. - Ensure that after explicit call method call `connected_to` with `prevent_writes: false` 'preventing writes' is retained Related to https://github.com/rails/rails/pull/37065
This commit is contained in:
parent
ffd74f58b0
commit
39c6986ffc
1 changed files with 4 additions and 0 deletions
|
@ -62,7 +62,11 @@ module ActiveRecord
|
|||
|
||||
ActiveRecord::Base.connected_to(role: :writing, prevent_writes: false) do
|
||||
assert ActiveRecord::Base.connected_to?(role: :writing)
|
||||
assert_not_predicate ActiveRecord::Base.connection, :preventing_writes?
|
||||
end
|
||||
|
||||
assert ActiveRecord::Base.connected_to?(role: :writing)
|
||||
assert_predicate ActiveRecord::Base.connection, :preventing_writes?
|
||||
end
|
||||
assert called
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue