diff --git a/README.md b/README.md index 48e3645..e977c15 100755 --- a/README.md +++ b/README.md @@ -25,6 +25,14 @@ Prefix TestRail Case ID on start of your rspec scenario; say, `C860` scenario 'C847 verify the Google home page to fail' do expect(page).to have_content('Goo gle') end + + scenario 'C850 verify the Google home page to be pending' do + pending + end + + scenario 'C853 verify the Google home page to skip' do + skip "skipping this test" + end end ```