2015-11-11 04:09:46 -08:00

17 lines
454 B
Ruby

# 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 the main menu
scenario 'visit the home page' do
visit root_path
expect(page).to have_link 'Play Now'
expect(page).to have_link 'Browse Tables'
expect(page).to have_link 'Tutorial'
end
end