Work around test/unit’s requirement that every subclass of TestCase have at least one test method. Note that this implementation extends to all subclasses, as well, so subclasses of IntegrationTest may also exist without any test methods.
Source Code
# File action_controller/integration.rb, line 546 def run(*args) #:nodoc: return if @method_name == "default_test" super end
<code/>and<pre/>for code samples.