class ActionDispatch::Routing::HelperTest

Public Instance Methods

test_exception() click to toggle source
# File actionpack/test/routing/helper_test.rb, line 14
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