Я пытаюсь проверить действие «уничтожить» для моего вложенного контроллера комментариев.
Модель пользователя has_many :comments, dependent: :destroy
Модель фильма has_many :comments, dependent: :destroy
Модель комментариев belongs_to :user and :movie
Вот мой контроллер комментариев
def create
@comment = @movie.comments.new(comment_params.merge(user: current_user))
if @comment.save
flash[:notice] = 'Comment successfully added'
redirect_to @movie
else
flash.now[:alert] = 'You can only have one comment per movie'
render 'movies/show'
end
end
def destroy
@comment = @movie.comments.find(params[:id])
if @comment.destroy
flash[:notice] = 'Comment successfully deleted'
else
flash[:alert] = 'You are not the author of this comment'
end
redirect_to @movie
end
private
def comment_params
params.require(:comment).permit(:body)
end
def set_movie
@movie = Movie.find(params[:movie_id])
end
Конечно, сверху тоже есть before_action :set_movie, only: %i[create destroy]
.
Вот мои спецификации, я использую FactoryBot, и все фабрики работают отлично в других примерах, поэтому я думаю, что проблема в другом.
describe "DELETE #destroy" do
let(:user) { FactoryBot.create(:user) }
let(:movie) { FactoryBot.create(:movie) }
before do
sign_in(user)
end
it "deletes comment" do
FactoryBot.create(:comment, movie: movie, user: user)
expect do
delete :destroy, params { movie_id: movie.id }
end.to change(Comment, :count).by(-1)
expect(response).to be_successful
expect(response).to have_http_status(:redirect)
end
end
У меня ошибка ActionController::UrlGenerationError: No route matches {:action=>"destroy", :controller=>"comments", :movie_id=>1}
Я думаю, что мой адрес в спецификации уничтожить действие неверен, но как правильно его определить?