25

私のルート.rb

  namespace :magazine do
   resources :pages do
     resources :articles do
       resources :comments
     end
   end
  end

コメントのコントローラー仕様を書いている間:

describe "GET 'index'" do
    before(:each) do
     @user = FactoryGirl.create(:user)
     @page = FactoryGirl.build(:page)
     @page.creator = @user
     @page.save
     @article = FactoryGirl.create(:article)
     @comment_attributes = FactoryGirl.attributes_for(:comment, :article_id => @article )
   end
it "populates an array of materials" do
  get :index, ??
  #response.should be_success
  assigns(:comments)
end

it "renders the :index view" do
  get :index, ?? 
  response.should render_template("index")
end

end 

:index を取得するためにページと記事の参照を与える方法はありますか?? 私が与えた場合: get :index, :article_id => @article.id
私が得るエラーは以下の通りです:

 Failure/Error: get :index, :article_id => @article.id
 ActionController::RoutingError:
   No route matches {:article_id =>"3", :controller=>"magazine/comments"}
4

2 に答える 2

43

ルートには、コメントの親記事と記事の親ページの少なくとも 2 つの ID が必要です。

namespace :magazine do
  resources :pages do
    resources :articles do
      resources :comments
    end
  end
end

# => /magazine/pages/:page_id/articles/:article_id/comments

このルートが機能するには、すべての親 IDを指定する必要があります。

it "renders the :index view" do
  get :index, {:page_id => @page.id, :article_id => @article.id}
  # [UPDATE] As of Rails 5, this becomes:
  # get :index, params: {:page_id => @page.id, :article_id => @article.id}
  response.should render_template("index")
end
于 2013-04-30T09:31:51.150 に答える