Search code examples
ruby-on-railstestingrspecrspec2

RSpec list all pending examples


I'm using Rspec to test a rails app.

Is there a way to list all the pending examples without running the full test suite?


Solution

  • Run the rspec command passing --tag pending

    For example: bundle exec rspec spec --tag pending