Sha256: 58645594cbd10a5f04e41c9639db685be89b907bff1ab5900de2848a6fa06f0a
Contents?: true
Size: 529 Bytes
Versions: 1
Compression:
Stored size: 529 Bytes
Contents
require 'rails_helper' # 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 'Home' expect(page).to have_content 'Sign in' expect(page).to have_content 'Sign up' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_layout-1.0.18 | lib/generators/layout/navigation/templates/navigation_spec.rb |