mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Test for after_create callback order in ActiveSupport [#5703 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
This commit is contained in:
parent
72c1e19c33
commit
bfc986811c
1 changed files with 23 additions and 0 deletions
|
@ -149,6 +149,27 @@ module CallbacksTest
|
|||
end
|
||||
end
|
||||
|
||||
class AfterSaveConditionalPerson < Record
|
||||
after_save Proc.new { |r| r.history << [:after_save, :string1] }
|
||||
after_save Proc.new { |r| r.history << [:after_save, :string2] }
|
||||
def save
|
||||
run_callbacks :save
|
||||
end
|
||||
end
|
||||
|
||||
class AfterSaveConditionalPersonCallbackTest < Test::Unit::TestCase
|
||||
def test_after_save_runs_in_the_reverse_order
|
||||
person = AfterSaveConditionalPerson.new
|
||||
person.save
|
||||
assert_equal [
|
||||
[:after_save, :string2],
|
||||
[:after_save, :string1]
|
||||
], person.history
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
||||
class ConditionalPerson < Record
|
||||
# proc
|
||||
before_save Proc.new { |r| r.history << [:before_save, :proc] }, :if => Proc.new { |r| true }
|
||||
|
@ -352,6 +373,8 @@ module CallbacksTest
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
|
||||
class ResetCallbackTest < Test::Unit::TestCase
|
||||
def test_save_conditional_person
|
||||
person = CleanPerson.new
|
||||
|
|
Loading…
Reference in a new issue