0

我对 Rails 很陌生,我对 Ruby 的了解也很生疏。无论如何,我正在尝试以正确的方式编写我的第一个 Rails 应用程序,并具有良好的测试覆盖率。我一直在尝试遵循入门指南并将其与测试指南相结合来完成此任务。(为什么这两件事没有结合起来!?)

所以,现在我一直在尝试测试向Comments控制器添加方法:

class CommentsController < ApplicationController
  def create
    @post = Post.find(params[:post_id])
    @comment = @post.comments.create(params[:comment])
    redirect_to post_path(@post)
  end
end

就我的测试而言,这是:

class CommentsControllerTest < ActionController::TestCase  
  setup do
    @comment = comments(:one)
  end
  test "should create comment" do
    assert_difference('Comment.count') do
      post :create, comment: { body: @comment.body, commenter: @comment.commenter, ???? }
    end

    assert_redirected_to post_path(assigns(:post)) #???? 
  end
end

有了这个夹具

one:
  commenter: mystring
  body: mytext
  post: 

two:
  commenter: mystring
  body: mytext
  post: 

我的问题是我看不到如何以惯用的 Rails 方式创建和引用 Post 作为评论的父级。

我该怎么做?

4

1 回答 1

1

您需要向post_id创建请求添加一个参数(post_id由控制器中的行使用@post = Post.find(params[:post_id]))。例子:

class CommentsControllerTest < ActionController::TestCase  

  setup do
    @comment = comments(:one)
    @post = posts(:post_one)
  end

  test "should create comment" do
    assert_difference('Comment.count') do
      post :create, comment: { body: @comment.body, commenter: @comment.commenter }, post_id: @post.id
    end    
    assert_redirected_to post_path(assigns(:post))
  end

end

此代码假定您已在您的固定装置中定义了一个Post由标识。:post_one

于 2013-06-09T15:46:37.703 回答