我正在尝试使用 Rspec 和模拟模型测试嵌套控制器,但出现以下错误:
Failure/Error: it { assigns[:store].should equal(mock_store) }
expected #<Store:2198414660> => #<Store:0x83092544 @name="Store_1008">
got #<User:2198383140> => #<User:0x8308aa24 @name="User_1009">
我找不到为什么会这样。
路线.rb
namespace :api do
namespace :v1 do
devise_for :users, :controllers => { :sessions => "devise/sessions",
:passwords => "devise/passwords",
:registrations => "devise/registrations" }
resources :categories, :only => [ :index, :show ]
resources :users, :only => [ :index, :show ] do
resources :stores
end
resources :stores do
resources :products
end
resources :products
end
end
应用程序/控制器/api/v1/stores_controller.rb
class Api::V1::StoresController < Api::ApiController
belongs_to :user
actions :all
end
应用程序/控制器/api/api_controller.rb
class Api::ApiController < InheritedResources::Base
respond_to :json
end
我的 spec/controllers/api/v1/stores_controller_spec.rb -> http://www.pastie.org/2118818向我抛出了这些奇怪的错误 -> http://www.pastie.org/2118825。
为什么我总是得到嘲笑的用户而不是商店。
如果我从 app/controllers/api/v1/stores_controller.rb 中删除了 belongs_to :user 行,我所有的测试都通过了,但我有兴趣测试“users/:user_id/stores/*”路由。
我如何正确测试它们,以及为什么我得到一个模拟用户而不是商店。
我在用着
* inherited_resources (1.2.2)
* rails (3.0.7)
* rspec (2.5.0)
* rspec-core (2.5.2)
* rspec-expectations (2.5.0)
* rspec-mocks (2.5.0)
* rspec-rails (2.5.0)
谢谢你的时间。