class Spec::Rails::Example::ViewExampleGroup

def subject_of_render(options) #:nodoc:

:nodoc:
def subject_of_render(options) #:nodoc:
  [:template, :partial, :file].each do |render_type|
    if options.has_key?(render_type)
      return options[render_type]
    end
  end
  return ""
end