ruby-on-rails – Rails RSpec路由:测试操作:除了不路由

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails RSpec路由:测试操作:除了不路由前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
相当简单的问题(我想过),但我遇到了一些问题:

在Rails 3.1.0.rc6 / RSpec 2.6.0中,我正在尝试测试我的’产品’资源的路由,如下所示:

resources :products,:except => [:edit,:update]

有效操作的路由有效,但我想确保编辑和更新路由不可调用.这是我正在尝试的:

it "does not route to #edit" do
  lambda { get("/products/1/edit") }.should raise_error
end

Failure/Error: lambda { get(“/products/1/edit”) }.should raise_error
expected Exception but nothing was raised
# ./spec/routing/products_routing_spec.rb:11:in `block (3 levels)
in ‘

……然而,当我跑的时候

it "does not route to #edit" do
  get("/products/1/edit").should_not route_to("products#edit",:id => "1")
end

我明白了

Failure/Error: get(“/products/1/edit”).should_not
route_to(“products#edit”,:id => “1”)
ActionController::RoutingError:
No route matches “/products/1/edit”

知道这里发生了什么吗?我猜这应该很简单,但我似乎无法弄明白.

解决方法

我不知道为什么lambda会失败,但我不认为rspec-rails dsl是打算像那样使用.你尝试过这样的事吗?
{ :get => "/products/1/edit" }.should_not be_routable

http://relishapp.com/rspec/rspec-rails/docs/routing-specs/be-routable-matcher

因此,您无法指定它未路由到的内容,但您可以指定它不会被路由.

原文链接:https://www.f2er.com/ruby/269977.html

猜你在找的Ruby相关文章