I can run a single rspec example with
spec -e 'should be awesome' spec/models/stuff_spec.rb
but how do I run an entire group ?
describe 'GoodStuff' do
it 'should be awesome' do
true.should be_true
end
it 'want to run this too' do
true.should be_true
end
end
I've heard there's a spec -g option, but a) its not documented b) it does not work for me on rspec 1.3.0..