Sha256: ca68f41542d7afcc07b73a926746ba62ceb145ab8d0803b7d68ac3ff87680fc2
Contents?: true
Size: 406 Bytes
Versions: 27
Compression:
Stored size: 406 Bytes
Contents
# Feature: 'About' page # As a visitor # I want to visit an 'about' page # So I can learn more about the website feature 'About page' do # Scenario: Visit the 'about' page # Given I am a visitor # When I visit the 'about' page # Then I see "About the Website" scenario 'Visit the about page' do visit 'pages/about' expect(page).to have_content 'About the Website' end end
Version data entries
27 entries across 27 versions & 1 rubygems