我的测试套件中只有create(:user, :registering)
。我跑的时候
$ bundle exec rspec
一切正常。但是当运行特定的.spec:
时$ bundle exec rspec spec/requests/user_profile_spec.rb
我收到错误告诉方法create
未定义。我为这个sintax工作提供了正确的配置:
# spec/support/factory_girl.rb
RSpec.configure do |config|
config.include FactoryGirl::Syntax::Methods
end
和
# rails_helper.rb
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
缺少哪种配置?
提前致谢!