aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/test_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/test_test.rb')
-rw-r--r--activesupport/test/test_test.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/activesupport/test/test_test.rb b/activesupport/test/test_test.rb
index a05fb9b92d..eecbd31f98 100644
--- a/activesupport/test/test_test.rb
+++ b/activesupport/test/test_test.rb
@@ -1,5 +1,5 @@
require File.dirname(__FILE__) + '/abstract_unit'
-
+require 'active_support/test_case'
class AssertDifferenceTest < Test::Unit::TestCase
def setup
@object = Class.new do
@@ -64,8 +64,10 @@ class AssertDifferenceTest < Test::Unit::TestCase
end
end
-# This should always pass
-
+# These should always pass
class NotTestingThingsTest < Test::Unit::TestCase
include ActiveSupport::Testing::Default
end
+
+class AlsoDoingNothingTest < ActiveSupport::TestCase
+end