I’m trying to set a testing framework for a rails engine.
I have everything working, I generated the corresponding rspec file with:
rails g rspec:install
However everytime I want to add a rspec testing file with:
rails g integration_test blah
The RSpec doesn’t take over and instead the standard unit testing framework of rails creates the corresponding files. Any thoughts on where the problem might be?
I solved that problem running rails g with –integration-tools option
I do not know how to set rspec as default tool.