4

使用 Rails 3.2.11

我有几个视图 rspec 测试,我需要在其中存根“current_user”调用。

我在常规视图测试中成功使用了它,如下所示:

require 'spec_helper'

describe "projects/_my_project.html.erb" do

  before(:each) do
    @client = FactoryGirl.create(:user)
    view.stub(:current_user) { @client }  
  end

  describe "new proposals notice" do
    it "does not display new_propsals if in state posted and clicked after last submitted"  do
      @my_project = FactoryGirl.build(:project, status: "posted", last_proposals_click: "2012-02-02 14:01:00", last_proposal_submitted: "2012-02-02 14:00:00")
      render :partial => "/projects/my_project", :locals => { :my_project => @my_project }
      rendered.should_not have_content "You received new proposals"
    end
  end
end

Current_user 由 Devise 在 controllers/helpers.rb (在 gem 中)中定义。我在视图或控制器中到处使用它作为 current_user(作为方法,而不是实例)。

问题似乎与 view.stub 中的视图有关,此处为 nil,是否有另一个对象用于部分情况?我只是不明白为什么这在常规视图中很完美,而不是在部分视图中。

我得到:

Failure/Error: view.stub(:current_user) { @client }
 NoMethodError:
   undefined method `view_context' for nil:NilClass

这是视图中的行,其中 current_user 用于完整性:

<% if my_project.user_id == current_user.id %> 

有谁知道我怎样才能成功地存根 current_user,我在这里不知所措......

谢谢

4

1 回答 1

6

事实证明,将 view.stub(:current_user) { @client } 移动到每个“it”块中解决了问题;如果它位于“之前:每个/全部”块中,它似乎不起作用。

于 2013-04-11T10:24:17.487 回答