webdev.camp/spec/features/visitors/navigation_spec.rb

19 lines
505 B
Ruby

# Feature: Navigation links
# As a visitor
# I want to see navigation links
# So I can find home, sign in, or sign up
feature 'Navigation links', :devise do
# Scenario: View navigation links
# Given I am a visitor
# When I visit the home page
# Then I see "home," "sign in," and "sign up"
scenario 'view navigation links' do
visit root_path
expect(page).to have_content 'Course'
expect(page).to have_content 'Sign in'
expect(page).to have_content 'Apply'
end
end