Namespace
Methods
T
Instance Public methods
test_exception()
# File actionpack/test/routing/helper_test.rb, line 12
def test_exception
  rs = ::ActionDispatch::Routing::RouteSet.new
  rs.draw do
    resources :ducks do
      member do
        get :pond
      end
    end
  end

  x = Class.new {
    include rs.url_helpers
  }
  assert_raises ActionController::UrlGenerationError do
    x.new.pond_duck_path Duck.new
  end
end