I am trying to get factory girl to run with rspec in my rails 4.1.1 app.
Problem is when I run rspec in my command line, i get Failure/Error: vers
rspec
Failure/Error: vers
This seems to be an issue with Factory Bot. I fixed it (as per the issue report) with FactoryBot.find_definitions:
FactoryBot.find_definitions
RSpec.configure do |config| config.include FactoryBot::Syntax::Methods config.before do FactoryBot.find_definitions end end