Sha256: 7cb40da0be60a02469e7628523471e8c8b7c9413d0136d57dd7d9ee72e91d99e

Contents?: true

Size: 1.27 KB

Versions: 123

Compression:

Stored size: 1.27 KB

Contents

require 'active_support/testing/assertions'
require 'active_support/testing/deprecation'
require 'active_support/testing/declarative'
require 'minitest/autorun'

module ActiveSupport
  class TestCase < ::Minitest::Test
    Assertion = Minitest::Assertion

    alias_method :method_name, :name

    include ActiveSupport::Testing::Assertions
    include ActiveSupport::Testing::Deprecation
    extend ActiveSupport::Testing::Declarative

    # test/unit backwards compatibility methods
    alias :assert_raise :assert_raises
    alias :assert_not_empty :refute_empty
    alias :assert_not_equal :refute_equal
    alias :assert_not_in_delta :refute_in_delta
    alias :assert_not_in_epsilon :refute_in_epsilon
    alias :assert_not_includes :refute_includes
    alias :assert_not_instance_of :refute_instance_of
    alias :assert_not_kind_of :refute_kind_of
    alias :assert_no_match :refute_match
    alias :assert_not_nil :refute_nil
    alias :assert_not_operator :refute_operator
    alias :assert_not_predicate :refute_predicate
    alias :assert_not_respond_to :refute_respond_to
    alias :assert_not_same :refute_same

    # Fails if the block raises an exception.
    #
    #   assert_nothing_raised do
    #     ...
    #   end
    def assert_nothing_raised(*args)
      yield
    end
  end
end

Version data entries

123 entries across 123 versions & 3 rubygems

Version Path
devcycle-ruby-server-sdk-2.0.0 vendor/bundle/ruby/3.0.0/gems/oj-3.13.2/test/activesupport4/test_helper.rb
oj-3.14.2 test/activesupport4/test_helper.rb
oj-3.14.1 test/activesupport4/test_helper.rb
oj-3.14.0 test/activesupport4/test_helper.rb
oj-3.13.23 test/activesupport4/test_helper.rb
oj-3.13.22 test/activesupport4/test_helper.rb
oj-3.13.21 test/activesupport4/test_helper.rb
oj-3.13.20 test/activesupport4/test_helper.rb
oj-3.13.19 test/activesupport4/test_helper.rb
oj-3.13.18 test/activesupport4/test_helper.rb
oj-3.13.17 test/activesupport4/test_helper.rb
oj-3.13.16 test/activesupport4/test_helper.rb
oj-3.13.15 test/activesupport4/test_helper.rb
oj-3.13.14 test/activesupport4/test_helper.rb
oj-3.13.13 test/activesupport4/test_helper.rb
oj-3.13.12 test/activesupport4/test_helper.rb
oj-3.13.11 test/activesupport4/test_helper.rb
oj-3.13.10 test/activesupport4/test_helper.rb
oj-3.13.9 test/activesupport4/test_helper.rb
oj-3.13.8 test/activesupport4/test_helper.rb