Sha256: ba7fb856a735942b019b16ca4084ba6047bbbaffbd168c8d38513fe04e8e220d

Contents?: true

Size: 1.33 KB

Versions: 21

Compression:

Stored size: 1.33 KB

Contents

Feature: I can easily create models from my blueprints

  As a machinist user
  I want to be able to leverage my blueprints
  So that I can create models quickly and easily in my features
  
  Scenario: I create a spoon, and see if it looks right
    Given a spoon exists
    Then the spoon should be round

  Scenario: I create a non round spoon, and see if it looks right
    Given a spoon exists with round: false
    Then the spoon should not be round

  Scenario: I create a named spoon, and see if it has the name
    Given a spoon exists with name: "Pete", round: false
    Then a spoon should exist with name: "Pete"
    And the spoon should not be round
  
  Scenario: I create 7 spoons of various roundness
    Given 2 spoons exist with round: false
    And 2 spoons exist with round: true
    And a spoon exists with round: false
    
    Then the 1st spoon should not be round
    And the 2nd spoon should not be round
    And the 3rd spoon should be round
    And the 4th spoon should be round
    And the 5th spoon should not be round
    
    And 3 spoons should exist with round: false
    And the 1st spoon should not be round
    And the 2nd spoon should not be round
    And the last spoon should not be round
    
    And 2 spoons should exist with round: true
    And the first spoon should be round
    And the last spoon should be round

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
pickle-0.2.8 features/pickle/create_from_machinist.feature
pickle-0.2.7 features/pickle/create_from_machinist.feature
pickle-0.2.6 features/pickle/create_from_machinist.feature
pickle-0.2.5 features/pickle/create_from_machinist.feature
pickle-0.2.4 features/pickle/create_from_machinist.feature
pickle-0.2.3 features/pickle/create_from_machinist.feature
pickle-0.2.2 features/pickle/create_from_machinist.feature
kbaum-pickle-0.2.1.4 features/pickle/create_from_machinist.feature
kbaum-pickle-0.2.1.3 features/pickle/create_from_machinist.feature
kbaum-pickle-0.2.1.2 features/pickle/create_from_machinist.feature
kbaum-pickle-0.2.1.1 features/pickle/create_from_machinist.feature
pickle-0.2.1 features/pickle/create_from_machinist.feature
pickle-0.2.0 features/pickle/create_from_machinist.feature
pickle-0.1.23 features/pickle/create_from_machinist.feature
pickle-0.1.22 features/pickle/create_from_machinist.feature
pickle-0.1.21 features/pickle/create_from_machinist.feature
pickle-0.1.20 features/pickle/create_from_machinist.feature
pickle-0.1.19 features/pickle/create_from_machinist.feature
pickle-0.1.18 features/pickle/create_from_machinist.feature
pickle-0.1.17 features/pickle/create_from_machinist.feature