We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm getting
undefined local variable or method `set_the_flash'
when running tests with Zeus only. rspec spec runs fine.
rspec spec
set_the_flash is an instance method of shoulda-matchers gem:
set_the_flash
shoulda-matchers
Shoulda::Matchers::ActionController#set_the_flash
The text was updated successfully, but these errors were encountered:
Might the same problem as #134 make sure the gems are in the same group
group :test do gem 'rspec-rails' gem 'shoulda-matchers' end
also make sure to not require autorun
Hope this helps, shoulda has been the source of some issues so far.
Sorry, something went wrong.
Works fine now! Thanks!
I just had to reorder the Gemfile groups to keep rspec-rails generators.
Before:
group :test do gem 'shoulda-matchers' end group :development, :test do gem 'rspec-rails' end
After:
group :development, :test do gem 'rspec-rails' end group :test do gem 'shoulda-matchers' end
No branches or pull requests
I'm getting
when running tests with Zeus only.
rspec spec
runs fine.set_the_flash
is an instance method ofshoulda-matchers
gem:Shoulda::Matchers::ActionController#set_the_flash
The text was updated successfully, but these errors were encountered: