1

我有一个名为“Post”的模型,它是一个名为“Project”的模型下的嵌套资源,我正在尝试测试控制器。该代码可以在我的浏览器中找到,但我无法让它在测试中工作。这是测试

context "on POST to :edit" do
  setup do
    post( :edit,
      :project_id => @project1.to_param, 
      :id => @post1.to_param, 
      :post => { :title => 'new title', :text => 'other text' } 
    )
  end
  should_assign_to :post
  should_assign_to :project
  should_respond_with :success

  should "update post values" do
    assert_equal 'other text', assigns['post'].text
  end

知道我是怎么搞砸的吗?

4

1 回答 1

0

这是我不了解 Rails 的 REST 架构的结果 - 或者 - 帖子语法。我应该一直使用 PUT 而不是 POST,调用应该是这样的:

context "on PUT to :update" do
  setup do
    put :update, { 
      :project_id => @project1.to_param, 
      :id => @post1.to_param, 
      :post => { :title => 'new title', :text => 'other text' } 
    } 
  end

  should_assign_to :post
  should_assign_to :project
  should_respond_with :success

  should "update post values" do
    assert_equal 'new title', assigns['post'].title
    assert_equal 'other text', assigns['post'].text
  end
end

我一直在使用错误的语法,因为由于某种原因它仍然正确处理我的嵌套 id。

于 2010-01-12T01:55:21.787 回答