How to ignore or skip a test method using RSpec?
You can use pending() or change it to xit or wrap assert in pending block for wait implementation: describe ‘Automation System’ do # some code here it ‘Test01’ do pending(“is implemented but waiting”) end it ‘Test02’ do # or without message pending end pending do “string”.reverse.should == “gnirts” end xit ‘Test03’ do true.should be(true) end … Read more