Sha256: 15c25a6cb969cdfbeb77816402164c561524e370e9e1f1110c8f4a99d540d43c

Contents?: true

Size: 1.25 KB

Versions: 7

Compression:

Stored size: 1.25 KB

Contents

begin
  require 'test/unit/testcase'
rescue LoadError => e
  raise LoadError, "Please add test-unit gem to your Gemfile: `gem 'test-unit', '~> 3.0'` (#{e.message})", e.backtrace
end
require 'active_support/testing/setup_and_teardown'
require 'active_support/testing/assertions'
require 'active_support/testing/deprecation'
require 'active_support/testing/declarative'
require 'active_support/testing/pending'
require 'active_support/testing/isolation'
require 'active_support/testing/mochaing'
require 'active_support/core_ext/kernel/reporting'

module ActiveSupport
  class TestCase < ::Test::Unit::TestCase
    if defined?(MiniTest::Assertions) && TestCase < MiniTest::Assertions
      Assertion = MiniTest::Assertion
      alias_method :method_name, :name if method_defined? :name
      alias_method :method_name, :__name__ if method_defined? :__name__
    else
      Assertion = Test::Unit::AssertionFailedError

      undef :default_test
    end

    $tags = {}
    def self.for_tag(tag)
      yield if $tags[tag]
    end

    include ActiveSupport::Testing::SetupAndTeardown
    include ActiveSupport::Testing::Assertions
    include ActiveSupport::Testing::Deprecation
    include ActiveSupport::Testing::Pending
    extend ActiveSupport::Testing::Declarative
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/test_case.rb
activesupport-3.2.22.5 lib/active_support/test_case.rb
activesupport-3.2.22.4 lib/active_support/test_case.rb
activesupport-3.2.22.3 lib/active_support/test_case.rb
activesupport-3.2.22.2 lib/active_support/test_case.rb
activesupport-3.2.22.1 lib/active_support/test_case.rb
activesupport-3.2.22 lib/active_support/test_case.rb