forked from cucumber/cucumber-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed parser so it parses attachment 1 in [cucumber#177 state:open]
- Loading branch information
1 parent
136361d
commit 24d399c
Showing
6 changed files
with
40 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Users want to know that nobody can masquerade as them. We want to extend trust | ||
only to visitors who present the appropriate credentials. Everyone wants this | ||
identity verification to be as secure and convenient as possible. | ||
|
||
Feature: Logging in | ||
As an anonymous user with an account | ||
I want to log in to my account | ||
So that I can be myself | ||
|
||
# | ||
# Log in: get form | ||
# | ||
Scenario: Anonymous user can get a login form. | ||
Given I am logged out | ||
When I go to "/login" | ||
Then I should be at the "sessions/new" page | ||
|
||
# | ||
# Log in successfully, but don't remember me | ||
# | ||
Scenario: Anonymous user can log in | ||
Given an "activated" user named "reggie" exists | ||
And I am logged out | ||
When I go to "/login" | ||
And I fill in "Login" with "reggie" | ||
And I fill in "Password" with "password" | ||
And I press "Log in" | ||
Then I should be at the "dashboard/index" page | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters