class Shoulda::ActionController::Matchers::RouteMatcher

def stringify_params!

def stringify_params!
  @params.each do |key, value|
    @params[key] = value.is_a?(Array) ? value.collect {|v| v.to_param } : value.to_param
  end
end