aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/test_case.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-02-02 11:49:32 -0800
committerYehuda Katz <wycats@gmail.com>2009-02-02 11:49:32 -0800
commit9744f687ccfe83bde52696985030225919c2e681 (patch)
tree36a37f0dd469a33e4ee8638a03906aaf0c9cc3fc /activesupport/lib/active_support/test_case.rb
parent6faff0223b4470a6c1c66664f1b3df94de206841 (diff)
downloadrails-9744f687ccfe83bde52696985030225919c2e681.tar.gz
rails-9744f687ccfe83bde52696985030225919c2e681.tar.bz2
rails-9744f687ccfe83bde52696985030225919c2e681.zip
Add support for pending
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 97b2b6ef9c..3d4924f4eb 100644
--- a/activesupport/lib/active_support/test_case.rb
+++ b/activesupport/lib/active_support/test_case.rb
@@ -12,6 +12,7 @@ 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'
module ActiveSupport
class TestCase < ::Test::Unit::TestCase
@@ -34,6 +35,7 @@ module ActiveSupport
include ActiveSupport::Testing::SetupAndTeardown
include ActiveSupport::Testing::Assertions
include ActiveSupport::Testing::Deprecation
+ include ActiveSupport::Testing::Pending
extend ActiveSupport::Testing::Declarative
end
end