Sha256: 32fae266baef19523051470eecba25fd9b3cfbea8374ba629956ddc6862d392f
Contents?: true
Size: 367 Bytes
Versions: 27
Compression:
Stored size: 367 Bytes
Contents
# Feature: Home page # As a visitor # I want to visit a home page # So I can learn more about the website feature 'Home page' do # Scenario: Visit the home page # Given I am a visitor # When I visit the home page # Then I see "Welcome" scenario 'visit the home page' do visit root_path expect(page).to have_content 'Welcome' end end
Version data entries
27 entries across 27 versions & 1 rubygems