23 lines
675 B
Gherkin
23 lines
675 B
Gherkin
# features/home.feature
|
|
|
|
Feature: Homepage
|
|
|
|
Loading the homepage is the initial starting point for this tool
|
|
|
|
Scenario: Homepage Loads with a form
|
|
Given I visit the "/" page
|
|
Then I should see text "URL Shortener"
|
|
And I should see a form field "url"
|
|
And I should see a "Submit" button
|
|
|
|
Scenario: Submitting the form without entering a URL
|
|
Given I visit the "/" page
|
|
When I click the "Submit" button
|
|
Then I should be on "/" page
|
|
|
|
Scenario: Submitting the form with a correct URL
|
|
Given I visit the "/" page
|
|
When I type "http://google.com/" in the "url" field
|
|
And I click the "Submit" button
|
|
Then I should be on "/create" page
|