提交 a328f2ff 编写于 作者: A Aaron Patterson

add some tests, yay!

上级 36d9fd73
require 'abstract_unit'
module ActionDispatch
module Routing
class HelperTest < ActiveSupport::TestCase
class Duck
def to_param
nil
end
end
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::RoutingError do
x.new.pond_duck_path Duck.new
end
end
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册