From 134aa508d42478c6245a8d39b6cf69f1e6fc66f4 Mon Sep 17 00:00:00 2001 From: prashanth-sams Date: Wed, 24 Jul 2019 20:38:09 +0400 Subject: [PATCH] updates on doc --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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 ```