Sha256: e3a141888037eaa4a9a67aeabc89d8df561dffb688128819de4c0b0e50163370

Contents?: true

Size: 728 Bytes

Versions: 4

Compression:

Stored size: 728 Bytes

Contents

Feature: I can easily create models from my blueprints

  As a plain old AR user
  I want to be able to create models with fields
  So that I can create models quickly and easily in my features
  
  Scenario: I create a user, and see if it looks right
    Given a user exists with name: "Fred"
    Then the user should not have a status

  Scenario: I create a user, and see if it looks right
    Given a user exists with name: "Fred", status: "crayzee"
    Then a user should exist with name: "Fred"
    And a user should exist with status: "crayzee"
  
  Scenario: I create a user via a mapping
    Given I exist with status: "pwned", name: "fred"
    Then I should have a status
    And the user: "me" should have a status
  

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pickle-0.1.19 features/pickle/create_from_active_record.feature
pickle-0.1.18 features/pickle/create_from_active_record.feature
pickle-0.1.17 features/pickle/create_from_active_record.feature
pickle-0.1.16 features/pickle/create_from_active_record.feature