Skip to content

Commit

Permalink
make assert_difference error message not suck
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Aug 3, 2011
1 parent cc9ed15 commit 171881f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions activesupport/lib/active_support/testing/assertions.rb
Expand Up @@ -46,16 +46,17 @@ module Assertions
# end
def assert_difference(expression, difference = 1, message = nil, &block)
exps = Array.wrap(expression).map { |e|
e.respond_to?(:call) ? e : lambda { eval(e, block.binding) }
callee = e.respond_to?(:call) ? e : lambda { eval(e, block.binding) }
[e, callee]
}
before = exps.map { |e| e.call }
before = exps.map { |_, block| block.call }

yield

exps.each_with_index do |e, i|
error = "#{e.inspect} didn't change by #{difference}"
exps.each_with_index do |(code, block), i|
error = "#{code.inspect} didn't change by #{difference}"
error = "#{message}.\n#{error}" if message
assert_equal(before[i] + difference, e.call, error)
assert_equal(before[i] + difference, block.call, error)
end
end

Expand Down

0 comments on commit 171881f

Please sign in to comment.