up vote 29 down vote favorite
18
share [g+] share [fb]

I want to be able to run a single spec file's tests — for the one file I'm editing, for example. rake spec executes all the specs. My project is not a Rails project, so rake spec:doc doesn't work.

Don't know if this matters, but here is my directory structure.

./Rakefile
./lib
./lib/cushion.rb
./lib/cushion
./lib/cushion/doc.rb
./lib/cushion/db.rb
./spec
./spec/spec.opts
./spec/spec_helper.rb
./spec/db_spec.rb
link|improve this question

feedback

10 Answers

up vote 46 down vote accepted

Or you can skip rake and use the 'spec' command:

spec path/to/spec/file.rb

In your case I think as long as your ./spec/db_spec.rb file includes the appropriate helpers, it should work fine.

If you're using the latest version of spec it is:

rspec path/to/spec/file.rb
link|improve this answer
20  
with the new rspec you have to use "rspec path/to/file.rb" – bandhunt Nov 2 '10 at 0:32
feedback

The raw invocation:

rake spec SPEC=spec/controllers/sessions_controller_spec.rb \
          SPEC_OPTS="-e \"should log in with cookie\""

Now figure out how to embed this into your editor.

link|improve this answer
As I said, I'm not in rails so there's no controllers. But yes, "rake spec SPEC=file.rb" works. Thanks! I'm working on the Emacs integration now. – Jonathan Tran Sep 27 '08 at 16:54
3  
Don't launch the rakefile if you can avoid it. It takes frickin ages – Orion Edwards Sep 28 '08 at 20:09
Just run the spec file directly! See Orion Edwards's answer. – James Baker Oct 2 '08 at 4:46
1  
I changed the accepted answer, but the SPEC_OPTS param was helpful to me also. – Jonathan Tran Oct 3 '08 at 15:22
1  
Now that's what I call a good answer. Why isn't it marked as "Answer"? – gmile May 17 '10 at 14:12
feedback

As already answered before just calling

spec path/to/spec/file.rb
./scripts/spec path/to/spec/file.rb

will run the one spec. But you can even pick the example

spec path/to/spec/file.rb -e 'should work'
./scripts/spec path/to/spec/file.rb -e 'should work'

no need for rake here.

link|improve this answer
feedback

If you installed rspec as a plugin rather than as a gem, then you won't have the spec executable.

At any rate, All you need to do is run the file using ruby. The rspec code is clever enough to run the tests for you.

eg:

ruby myclass_spec.rb
link|improve this answer
feedback

http://github.com/grosser/single%5Ftest lets you do stuff like..

rake spec:user          #run spec/model/user_spec.rb (searches for user*_spec.rb)
rake test:users_c       #run test/functional/users_controller_test.rb
rake spec:user:token    #run the first spec in user_spec.rb that matches /token/
rake test:user:token    #run all tests in user_test.rb that match /token/
rake test:last
rake spec:last
link|improve this answer
feedback

specky.vim

link|improve this answer
1  
Link to specky: vim.org/scripts/script.php?script_id=2286 – jtimberman Jul 25 '10 at 1:18
feedback

from help (spec -h):

-l, --line LINE_NUMBER           Execute example group or example at given line.
                                 (does not work for dynamically generated examples)

Example: spec spec/runner_spec.rb -l 162

link|improve this answer
feedback

Alternatively, have a look at autotest.

Running autotest in a command window will mean that the spec file will be executed whenever you save it. Also, it will be run whenever the file you are speccing is run.

For instance, if you have a model spec file called person_spec.rb, and a model file that it is speccing called person.rb, then whenever you save either of these files from your editor, the spec file will be executed.

link|improve this answer
feedback

Ruby 1.9.2 and Rails 3 have an easy way to run one spec file:

  ruby -I spec spec/models/user_spec.rb

Explanation:

  • ruby command tends to be faster than the rake command
  • -I spec means "include the 'spec' directory when looking for files"
  • spec/models/user_spec.rb is the file we want to run.
link|improve this answer
feedback

I was having trouble getting any of these examples to work, maybe because the post is old and the commands have changed?

After some poking around I found this works:

rspec spec/models/user_spec.rb

That will run just the single file and provides useful output in the terminal.

link|improve this answer
This was mentioned in a comment in the accepted answer. Yes, I think this post is just so old that the command name has changed. – Jonathan Tran Mar 2 '11 at 16:19
feedback

Your Answer

 
or
required, but never shown

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