# File lib/rr/adapters.rb, line 9 def const_missing(adapter_const_name) unless DEPRECATED_ADAPTERS.include?(adapter_const_name) super return end show_warning_for(adapter_const_name) adapter = shim_adapters[adapter_const_name] ||= case adapter_const_name when :TestUnit RR.find_applicable_adapter_matching(/^TestUnit/) when :MiniTest RR.find_applicable_adapter_matching(/^minitest/) end adapter end
Generated with the Darkfish Rdoc Generator 2.