我可以使用
运行单个rspec示例spec -e 'should be awesome' spec/models/stuff_spec.rb
但是如何运行整个组?
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
我听说有一个spec -g选项,但是a)没有记录b)它在rspec 1.3.0上对我不起作用..
答案 0 :(得分:0)
spec -l N#thats减去L,其中行号是 描述组..
PPS - 我听说过spec -g'GoodStuff' - 但这对我不起作用 关于rspec 1.3.0