vote up 2 vote down star
1

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
flag

5 Answers

vote up 7 vote down check

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.

link|flag
vote up 5 vote down

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|flag
vote up 4 vote down

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|flag
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
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
I changed the accepted answer, but the SPEC_OPTS param was helpful to me also. – Jonathan Tran Oct 3 '08 at 15:22
vote up 2 vote down

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|flag
vote up 0 vote down

specky.vim

link|flag

Your Answer

Get an OpenID
or

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