Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm going through a tutorial that has suggested using rspec, but I have already gone through a lot of default rails installation. I really don't want to have to redo the installation at all. Anyway, when I run

$ rails g integration_test named

I get

  invoke  test_unit
  create    test/integration/named_test.rb

When I run bundle, various rspec gems are listed, but test_unit is not. The tutorial seems to have rails invoke rspec instead of test_unit without doing anything additional. How do I get rails to use rspec with the integration test generator command?

share|improve this question

6 Answers

up vote 16 down vote accepted

In your config/application.rb :

config.generators do |g|
  g.test_framework :rspec
end

Now when you run your generators, you get rspec test files. Remember to restart your server. For more information on generators :

http://railscasts.com/episodes/216-generators-in-rails-3

IF you really want to use the integration_test generator :

rails g integration_test named --integration-tool=rspec
share|improve this answer
1  
I had already done that .. what do you mean by restart the server? It was never running. – Explosion Pills Mar 27 '12 at 6:02
1  
i mean restarting spork or your test interface. If you have properly done that and execute 'rails g scaffold --help' you should be seeing 'rspec' as the default testing framework. Check my edit as well. – Spyros Mar 27 '12 at 6:30
1  
I updated the config/application.rb as you specified and ran rails g scaffold --help and it still says test_unit. Is there something I need to do to rerun the configuration or some way to manually change these settings? – Explosion Pills Apr 12 '12 at 11:58

Working with Rails 3.2.8 and rspec-rails 2.11.4, I discovered that my problem was in my Gemfile. I had rspec-rails in the :test group but not the :development group. Since Rails defaults to running in development mode (including when you're running generate), rspec-rails has to be in your :development group for it to hook into the generators. Once I had that in place, everything worked fine.

share|improve this answer
2  
+1 rspec-rails install as railitie github.com/rspec/rspec-rails/blob/master/lib/… and configures itself as test framework and integration tool. So one can include the gem in a shared group in the gemfile group :development, :test do – brutuscat Nov 12 '12 at 10:23
3  
This works without modifying config/application.rb – lulalala Apr 2 at 7:58

To use RSpec instead of default Test::Unit, run following command first

$ rails generate rspec:install

This command will create following folder/files

create  .rspec
create  spec
create  spec/spec_helper.rb

Now whenever you used generator to generate rails components like controller, model etc, it will create corresponding RSpecs.

share|improve this answer

Came across this issue today. application.rb has to be updated with:

config.generators do |g|
  g.test_framework :rspec
  g.integration_tool :rspec
end
share|improve this answer
4  
editing the application.rb file is no longer required, at least on Rails 3.2 with rspec-rails – prusswan Jul 25 '12 at 11:19

What I found that I did that some of the other methods works still is to check my spelling....I had what @tovodeverett had grouping rspec-rails with :development and :test but spelt development incorrectly. That fixed my issue but I was generating tests with test_unit instead of rspec.

share|improve this answer

As of Rails 3.2.12, follow these steps in order

rails new app_name --skip-test-unit

Add rspec-rails to your Gemfile in the development, test group

group :development, :test do
  gem 'rspec-rails'
end

Run bundle install

Finally, run the generator

rails generate rspec:install
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.