다형성 설명 작성 동작을 테스트하려고하는데 rspec에서 경로 일치 오류가 발생하지 않습니다.Rspec 경로가 다형성과 일치하지 않습니다.
class CommentsController < ApplicationController
before_action :authenticate_user!
def create
@comment = @commentable.comments.new(comment_params)
@comment.user_id = current_user.id
@comment.save
redirect_to :back, notice: "Your comment was successfully posted."
end
private
def comment_params
params.require(:comment).permit(:body)
end
end
는 RSpec에 내가 테스트를 위해이 방법을 사용하고
describe "POST #create" do
context "with valid attributes" do
before do
@project = FactoryGirl.create(:project)
@comment_attr = FactoryGirl.build(:comment).attributes
end
it "creates a new comment" do
expect{
post :create, params: { project_id: @project, comment: @comment_attr }
}.to change(Comment, :count).by(1)
end
end
end
내 다른 컨트롤러에서 동작을 만들고 거기에 좋은 모든이지만, 여기에 몇 가지 이유가에서 오류가 발생합니다. 나는 내 오류가 줄을 어디 params 전달 작업을 게시 할 수 있지만 오류가 표시되지 않습니다 생각합니다.
UPDATE
resources :projects do
resources :comments, module: :projects
resources :tasks do
resources :comments, module: :tasks
end
end
UPDATE 2
Failure/Error: post :create, params: { project_id: @project, commentable: @project, comment: @comment_attr }
ActionController::UrlGenerationError: No route matches {:action=>"create", :comment=>{"id"=>nil, "commentable_type"=>nil, "commentable_id"=>nil, "user_id"=>nil, "body"=>"MyText", "created_at"=>nil, "updated_at"=>nil, "attachment"=>nil}, :commentable=>#, :controller=>"comments", :project_id=>#}
컨트롤러에'@ commentable '을 (를) 설정하는 것은 무엇입니까? 'routes.rb'를 보면 나머지 발췌 한 테스트 파일 외에도 도움이 될 것입니다. –
@ JimVanFleet이 내 질문을 경로로 업데이트했습니다. Commentable 프로젝트 또는 작업이지만 commentable 프로젝트 때 대/소문자를 테스트하려고합니다. –
나는 당신의 의도를 이해하지만 위의 내용을 토대로'@ commentable'은'nil'입니다. 그것은'ApplicationController'에서 도우미입니까? 테스트 로그 또는 500에서 404를 얻고 있습니까? –