33 lines
982 B
Gherkin
33 lines
982 B
Gherkin
Feature: Home Page
|
|
As a visitor
|
|
I want to see the home page
|
|
So that I can learn about the club and view player rankings
|
|
|
|
Background:
|
|
Given there are top players in the system
|
|
And there is a club president
|
|
And there is a recent tournament
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page displays Top 10 Players
|
|
Given I am on the home page
|
|
Then I should see "Top 10 Players"
|
|
And I should see a rankings table
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page displays club information
|
|
Given I am on the home page
|
|
Then I should see "Club Information"
|
|
And I should see "Club President"
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page displays most recent tournament
|
|
Given I am on the home page
|
|
Then I should see "Most Recent Tournament"
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page has sign in and create account links
|
|
Given I am on the home page
|
|
Then I should see "Sign In"
|
|
And I should see "Create Account"
|