Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improved indention for gherkin cucumber feature: #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

rwrede
Copy link

@rwrede rwrede commented Aug 15, 2014

Scenario: Change password
    Given a user exists with email: "john@doe.com"
     When I go to the homepage
      And I follow "Mein Konto"
      And I follow "Mein Passwort ändern"

instead of:

Scenario: Change password
  Given a user exists with email: "john@doe.com"
  And I am signed in as the user
  When I go to the homepage
  And I follow "Mein Konto"
  And I follow "Mein Passwort ändern"

Scenario: Change password
  Given a user exists with email: "john@doe.com"
    And I am signed in as the user
   When I go to the homepage
    And I follow "Mein Konto"

instead of:

Scenario: Change password
  Given a user exists with email: "john@doe.com"
  And I am signed in as the user
  When I go to the homepage
  And I follow "Mein Konto"
  And I follow "Mein Passwort ändern"
@tpope
Copy link
Owner

tpope commented Aug 15, 2014

Is this a common real world style? Seems pretty arbitrary to support for English only.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants