How do you run a single test/spec file in RSpec? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T02:55:18Z http://stackoverflow.com/feeds/question/143925 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec 2 How do you run a single test/spec file in RSpec? Jonathan Tran 2008-09-27T16:11:52Z 2009-01-11T06:22:07Z <p>I want to be able to run a single spec file's tests &mdash; 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#143934 4 Answer by mislav for How do you run a single test/spec file in RSpec? mislav 2008-09-27T16:22:06Z 2008-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#144063 7 Answer by Cameron Booth for How do you run a single test/spec file in RSpec? Cameron Booth 2008-09-27T17:20:10Z 2008-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#146612 5 Answer by Orion Edwards for How do you run a single test/spec file in RSpec? Orion Edwards 2008-09-28T20:04:38Z 2008-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#166049 2 Answer by fatgeekuk for How do you run a single test/spec file in RSpec? fatgeekuk 2008-10-03T09:12:30Z 2008-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#432460 0 Answer by fred for How do you run a single test/spec file in RSpec? fred 2009-01-11T06:22:07Z 2009-01-11T06:22:07Z <p>specky.vim</p>