Read more

Run a single example group in RSpec

Arne Hartherz
September 14, 2010Software engineer at makandra GmbH

To only run a single describe/context block in a long spec, you can say

spec spec/models/note_spec.rb:545
Illustration money motivation

Opscomplete powered by makandra brand

Save money by migrating from AWS to our fully managed hosting in Germany.

  • Trusted by over 100 customers
  • Ready to use with Ruby, Node.js, PHP
  • Proactive management by operations experts
Read more Show archive.org snapshot

... where the describe block starts at line 545.

Note: This will only run examples that are direct children of this block, not descendants further down (when nesting describe/context blocks).

You may also pass the line of an it block to run this exact one.

Posted by Arne Hartherz to makandra dev (2010-09-14 14:13)