我对 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 作为评论的父级。
我该怎么做?