Skip to content

Instantly share code, notes, and snippets.

@woodybrood
Created August 13, 2012 15:54
Show Gist options
  • Save woodybrood/3342125 to your computer and use it in GitHub Desktop.
Save woodybrood/3342125 to your computer and use it in GitHub Desktop.
Feature: Simple Multiplication
Scenario: Multiplying Two Numbers
Given I launch the app
Then I should see a Result of 0
When I enter 75
And I enter 3
And I tap *
Then I should see a Result of 225
Scenario: Multiplying Three Numbers
When I enter 3
And I enter 4
And I enter 5
And I tap *
Then I should see a Result of 20
And I tap *
Then I should see a Result of 60
Scenario: Multiplying Three Numbers in a different order
When I enter 3
And I enter 4
And I tap *
Then I should see a Result of 12
And I enter 5
And I tap *
Then I should see a Result of 60
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment