Sha256: 3cc2fd07ceeaa39ddfdf58b6c5737f48b61343e4b916a07d2488a21c7e1b5d4f
Contents?: true
Size: 528 Bytes
Versions: 2
Compression:
Stored size: 528 Bytes
Contents
require 'spec_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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails_layout-1.0.17 | lib/generators/layout/navigation/templates/navigation_spec.rb |
rails_layout-1.0.16 | lib/generators/layout/navigation/templates/navigation_spec.rb |