2

我有一个具有indexnew操作的 UsersController。我使用haml,索引haml文件包含以下代码:

= link_to 'Add User', new_user_path, { :remote => true, 'data-toggle' => 'modal', 
  'data-target' => '#modal-window', 'class' => 'btn btn-primary pull-right' }

因此,当用户单击“添加用户”时,_new.html.haml部分将作为模式呈现给用户。它工作得很好。这是控制器中的新操作:

def new
  @user = User.new

  respond_to do |format|
    format.html
    format.js
  end
end

现在在我的控制器规范中,我正在尝试执行以下操作:

describe "new action" do
  before do
    get 'new'
  end

  # specs for 'new' action go here
end

然而,这给出了一个错误

Failure/Error: get 'new'
 ActionView::MissingTemplate:
   Missing template users/new, application/new with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee, :haml]}. Searched in:
     * "#<RSpec::Rails::ViewRendering::EmptyTemplatePathSetDecorator:0x007faa44b03218>"

大概是因为它找不到new.html.haml哪个当然不存在,因为该文件是一个名为_new.html.haml. 部分的正确语法是什么get?如果没有,我该如何测试new动作?

4

1 回答 1

1

好的,这是我在新操作中所做的更改以使其正常工作:

respond_to do |format|
  format.html { render :partial => 'new' }
  format.js
end

当应用程序运行时,rails 会计算出渲染部分,但我想它需要对 rspec 明确。如果有更好的方法来做到这一点,我会很高兴听到他们的声音。

于 2013-09-28T17:23:37.100 回答