Sha256: a1f68323958756e5101408743859fd5a1abd0f6bb9c08c980f56f02c814e1d12

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

Feature: ActiveCucumber.create_one

  (see ./create_many.feature)


  Scenario: creating string columns
    When running "ActiveCucumber.create_one Episode, table" with this table:
      | NAME                  | Encounter at Farpoint |
    Then the database contains the given episode


  Scenario: creating integer columns
    When running "ActiveCucumber.create_one Episode, table" with this table:
      | YEAR                  | 1994 |
    Then the database contains the given episode


  Scenario: creating associated objects
    When running "ActiveCucumber.create_one Episode, table" with this table:
      | SHOW          | Star Trek TNG         |
      | NAME          | Encounter at Farpoint |
    Then the database contains the given episode
    And the database contains the show "Star Trek TNG"


  Scenario: complex example
    When running "ActiveCucumber.create_one Episode, table" with this table:
      | SHOW | Star Trek TNG         |
      | NAME | Encounter at Farpoint |
      | YEAR | 1987                  |
    Then the database contains the given episode
    And the database contains the show "Star Trek TNG"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
active_cucumber-0.0.6 features/active_cucumber/create_one.feature
active_cucumber-0.0.5 features/active_cucumber/create_one.feature
active_cucumber-0.0.4 features/active_cucumber/create_one.feature
active_cucumber-0.0.3 features/active_cucumber/create_one.feature
active_cucumber-0.0.2 features/active_cucumber/create_one.feature