I'm trying to configure FactoryGirl to work with my Cucumber tests. I added the following lines in env.rb
require 'factory_girl'
Dir.glob(File.join(File.dirname(__FILE__), '../../spec/factories/*.rb')).each {|f| require f }
When I run 'cucumber features', there's no problem.
I now add a file called teacher.rb
to spec/factories
and add the following in:
FactoryGirl.define do
factory :teacher do
first_name "John"
last_name "Smith"
end
end
Now when I run cucumber features
I get:
uninitialized constant FactoryGirl (NameError)
I'm obviously missing something, but what is it? How do I get Cucumber to work with Factory Girl?
Thanks!