Sha256: 63f0a39bbc23ee69d398447a8d689222c1c17761a399740a0213c885a126b999
Contents?: true
Size: 390 Bytes
Versions: 6
Compression:
Stored size: 390 Bytes
Contents
require 'spec_helper' # 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
6 entries across 6 versions & 1 rubygems