I have:
RSpec.configure do |config|
config.include FactoryGirl::Syntax::Methods
end
which properly work with simple rspec spec/model/user_spec.rb
(allows me to use create(:user)
, not FactoryGirl.create(:user)
).
But if I use zeus rspec spec/model/user_spec.rb
to speed up my specs, it troughs me an error:
Failure/Error: @user = create(:user)
NoMethodError:
undefined method `create' for #<RSpec::Core::ExampleGroup::Nested_2::Nested_1:0x007fc8618e4960>
How I can use this syntax with zeus?
Remove either of these lines in spec/spec_helper.rb if they exist:
require 'rspec/autorun'
require 'rspec/autotest'
Did you previously use spork on this project? If so, you have to remove the parts that Spork changed in your spec_helper
. Like @ilake-chang said, you have to remove the require 'rspec/autorun'
and you'll also want to remove Spork.prefork
and Spork.each_run
.
See the Zeus wiki on Spork
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With