# frozen_string_literal: true

class MockController
  attr_writer :action_name

  def _routes
    self
  end

  def action_name
    defined?(@action_name) ? @action_name : "edit"
  end

  def url_for(*args)
    "http://example.com"
  end

  def url_helpers
    self
  end

  def url_options
    {}
  end

  def hash_for_users_path(*); end

  def polymorphic_mappings
    {}
  end
end
