aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/test_case.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-07-08 14:51:57 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2012-07-08 14:51:57 -0700
commit5921cf0b45b602d02908f30da19f8e7aed262d88 (patch)
treee7f0655e91bce2f5cdcfc5a24ac981d466f7b273 /activesupport/lib/active_support/test_case.rb
parent3dc54d7e906ba356ece3956e168db3db80664877 (diff)
downloadrails-5921cf0b45b602d02908f30da19f8e7aed262d88.tar.gz
rails-5921cf0b45b602d02908f30da19f8e7aed262d88.tar.bz2
rails-5921cf0b45b602d02908f30da19f8e7aed262d88.zip
we still need `describe` as the implementation differs from minitest
Diffstat (limited to 'activesupport/lib/active_support/test_case.rb')
-rw-r--r--activesupport/lib/active_support/test_case.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb
index b6afeda966..e5e9aa8cc7 100644
--- a/activesupport/lib/active_support/test_case.rb
+++ b/activesupport/lib/active_support/test_case.rb
@@ -3,6 +3,7 @@ require 'minitest/spec'
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/isolation'
require 'active_support/testing/mocha_module'
require 'active_support/core_ext/kernel/reporting'
@@ -34,6 +35,7 @@ module ActiveSupport
include ActiveSupport::Testing::SetupAndTeardown
include ActiveSupport::Testing::Assertions
include ActiveSupport::Testing::Deprecation
+ extend ActiveSupport::Testing::Declarative
class << self
alias :test :it