我有以下内容:
# lib/devblog_extensions.rb
module DevblogExtensions
class Time
def self.random_date
# implementation ...
end
end
end
# spec/factories/posts.rb
FactoryGirl.define do
factory :post do
release_date Time.random_date # NoMethodError occurs
end
end
然后在config/application.rb
我有:
config.autoload_paths += %W(#{config.root}/lib)
但是当我跑步时,rspec
我仍然得到一个NoMethodError
,所以我错过了什么?谢谢!