我希望这不是一个特定的错误,它可能是一个逻辑错误,也可以帮助其他人。
我想测试我的控制器索引方法,并且我有一个带有活动记录查询的before方法。问题是,我无法确定我的测试有什么问题,因为我只在使用rspec时才会出现此错误,而不是在我手动测试时。
控制器的
class BlogsController < ApplicationController
before_filter :archive_months
def archive_months
@months = Blog.find(:all, :select=>:publish_date, :order=>"publish_date DESC")
.select{ |p| p.publish_date <= Date.today }
.group_by{ |p| [p.year, p.month, p.publish_date.strftime("%B")] }
end
测试
require 'rails_helper'
RSpec.describe BlogsController, :type => :controller do
before(:each) do
@post1 = create(:blog)
end
describe "GET #index" do
it "shows all blog posts" do
get :index
expect(response).to have_http_status(200)
end
end
end
测试输出
1) BlogsController GET #index shows all blog posts
Failure/Error: get :index
NoMethodError:
undefined method `<=' for nil:NilClass
# ./app/controllers/blogs_controller.rb:178:in `block in archive_months'
# ./app/controllers/blogs_controller.rb:177:in `select'
# ./app/controllers/blogs_controller.rb:177:in `archive_months'
如果我在页面或rails控制台上运行@months查询,它运行良好,但在我的测试中不起作用。
答案 0 :(得分:1)
您的测试数据库中似乎有一个或多个Blog
个对象没有设置publish_date
属性。这就是.select{ |p| p.publish_date <= Date.today }
引发错误的原因。