How do you run a single test/spec file in RSpec? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T02:55:18Zhttp://stackoverflow.com/feeds/question/143925http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec2How do you run a single test/spec file in RSpec?Jonathan Tran2008-09-27T16:11:52Z2009-01-11T06:22:07Z
<p>I want to be able to run a single spec file's tests — for the one file I'm editing, for example. <code>rake spec</code> executes all the specs. My project is not a Rails project, so <code>rake spec:doc</code> doesn't work.</p>
<p>Don't know if this matters, but here is my directory structure.</p>
<pre><code>./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
</code></pre>
http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec/143934#1439344Answer by mislav for How do you run a single test/spec file in RSpec?mislav2008-09-27T16:22:06Z2008-09-27T16:22:06Z<p>The raw invocation:</p>
<pre><code>rake spec SPEC=spec/controllers/sessions_controller_spec.rb \
SPEC_OPTS="-e \"should log in with cookie\""
</code></pre>
<p>Now figure out how to embed this into your editor.</p>
http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec/144063#1440637Answer by Cameron Booth for How do you run a single test/spec file in RSpec?Cameron Booth2008-09-27T17:20:10Z2008-09-27T17:20:10Z<p>Or you can skip rake and use the 'spec' command:</p>
<pre><code>spec path/to/spec/file.rb
</code></pre>
<p>In your case I think as long as your ./spec/db_spec.rb file includes the appropriate helpers, it should work fine. </p>
http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec/146612#1466125Answer by Orion Edwards for How do you run a single test/spec file in RSpec?Orion Edwards2008-09-28T20:04:38Z2008-09-28T20:04:38Z<p>If you installed rspec as a plugin rather than as a gem, then you won't have the <code>spec</code> executable.</p>
<p>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.</p>
<p>eg:</p>
<pre><code>ruby myclass_spec.rb
</code></pre>
http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec/166049#1660492Answer by fatgeekuk for How do you run a single test/spec file in RSpec?fatgeekuk2008-10-03T09:12:30Z2008-10-03T09:12:30Z<p>Alternatively, have a look at autotest.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec/432460#4324600Answer by fred for How do you run a single test/spec file in RSpec?fred2009-01-11T06:22:07Z2009-01-11T06:22:07Z<p>specky.vim</p>