I asked it in rspec-core repository (https://github.com/rspec/rspec-core/issues/2477) but after that I thought that it is not the proper place to ask questions.
Let's say I have this group:
it { should be_a Array }
it { should include :something }
it { should include :another }
Can I prevent rspec from running examples 2 and 3 if first one is failed? Yes, I know that I can join them in one to solve this, but still.
Sorry for my english
UPD. I want to add some explanation on this. I want this because I tired of getting 3 screens of same error messages from different examples if subject is bugged (or something like this). Even if you don't overuse should-oneliners like me you may face the same problem. In the end it will just speed up your tests in some cases