Sha256: 56c24cd238b92f89ce43a88afa725aad349af0eaf33bde91063b202c8246e11f

Contents?: true

Size: 1.41 KB

Versions: 56

Compression:

Stored size: 1.41 KB

Contents

module Test #:nodoc:
  module Unit #:nodoc:
    class TestCase #:nodoc:      
      # Test numeric difference between the return value of an expression as a result of what is evaluated
      # in the yielded block.
      #
      #   assert_difference 'Article.count' do
      #     post :create, :article => {...}
      #   end
      #
      # An arbitrary expression is passed in and evaluated.
      #
      #   assert_difference 'assigns(:article).comments(:reload).size' do
      #     post :create, :comment => {...}
      #   end
      #
      # An arbitrary positive or negative difference can be specified. The default is +1.
      #
      #   assert_difference 'Article.count', -1 do
      #     post :delete, :id => ...
      #   end
      def assert_difference(expression, difference = 1, &block)
        expression_evaluation = lambda { eval(expression, block.binding) }
        original_value        = expression_evaluation.call
        yield
        assert_equal original_value + difference, expression_evaluation.call
      end

      # Assertion that the numeric result of evaluating an expression is not changed before and after
      # invoking the passed in block.
      #
      #   assert_no_difference 'Article.count' do
      #     post :create, :article => invalid_attributes
      #   end
      def assert_no_difference(expression, &block)
        assert_difference expression, 0, &block
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
backlog-0.0.0 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.0.1 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.0.2 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.0.5 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.0.4 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.1.1 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.1.0 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.1.2 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.2.0 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.2.1 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.0 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.3 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.2 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.1 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.4 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.6 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.5 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.7 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.8 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb
backlog-0.3.9 vendor/rails/activesupport/lib/active_support/core_ext/test/difference.rb