Last Updated: February 25, 2016
·
264
· an0nym0use

Run rspec features independently

This has utility in checking the idempotency of feature setup and teardown.

find ./spec/features -name '*_feature.rb' -print | xargs grep -n scenario | cut -f1 -d ' ' | cut -d ':' -f1,2 | xargs -I {} bundle exec rspec {}