Is there a way to just output the string in the describe and it's block and not run the actual spec. We're thinking of migrating our task list to these strings
describe "second group task001" do
it "second example in second group" do
#some really long task that shouldn't be run
FactoryGirl.create(:really_long_factory)
end
end
outputs:
rspec this_spec.rb -fd
second group task001
second example in second group
thx