class method
self.included
Ruby on Rails 3.1.12
Since v3.0.20 Last seen in v3.2.22.5Signature
self.included(base)
No documentation comment.
Parameters
-
basereq
Source
# File activesupport/lib/active_support/testing/isolation.rb, line 40
def self.included(base)
if defined?(::MiniTest) && base < ::MiniTest::Unit::TestCase
base.send :include, MiniTest
elsif defined?(Test::Unit)
base.send :include, TestUnit
end
end
Defined in activesupport/lib/active_support/testing/isolation.rb line 40
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Testing::Isolation