我用RSPEC测试我的控制器
控制器代码
class CustomersController < ApplicationController
before_action :set_customer
def jobs
@jobs = @customer.jobs
end
private
def set_customer
if params[:id]
@customer = Customer.find(params[:id])
else
@customer = Customer.find(params[:customer_id])
end
end
我的Rspec测试如下:
测试代码
describe "GET job" do
it "renders the job view" do
customer = FactoryGirl.create(:customer)
controller.stub(:set_customer).and_return(customer)
get (:jobs)
expect(response).to render_template("customers/jobs.json.jbuilder")
end
end
我得到的错误 - 在调用get(:jobs)期间发生的是:
错误:
Failures:
1) CustomersController assigns @jobs
Failure/Error: get (:jobs)
NoMethodError:
undefined method `jobs' for nil:NilClass
# ./app/controllers/customers_controller.rb:37:in `jobs'
我有另一个测试,但是当调用get(:jobs)时,那个也给了我同样的错误。 我正在调整set_customer函数,并返回一个客户变量(通过工厂女孩制作)。我不确定为什么它还没有定义?作为参考(再次),控制器中此方法发生错误:
def jobs
@jobs = @customer.jobs
end
如果这不是正确的方法,我怎样才能生成@customer变量,就像它在控制器set_customers函数中完成的那样(通过params)并将其传递给rspec测试?
答案 0 :(得分:1)
您需要向请求调用传递:id
或:customer_id
参数值,例如:
get :jobs, id: 42
答案 1 :(得分:1)
Stubbing set_customer
没有设置实例变量,我认为你甚至不需要存根,你已经有了实际的客户
describe "GET job" do
it "renders the job view" do
customer = FactoryGirl.create(:customer)
get(:jobs, id: customer)
expect(response).to render_template("customers/jobs.json.jbuilder")
end
end