Sha256: dc13194b95d7e4daba939655abff1a883685b405a5d3b4684eeaaee6c2525a61

Contents?: true

Size: 922 Bytes

Versions: 16

Compression:

Stored size: 922 Bytes

Contents

Feature: Trading
  In order to avoid lost trades
  Traders should be alerted about stocks

  Scenario: Status alert can be activated
    Given a stock of prices 0.5,1.0 and a threshold of 10.0
    When the stock is traded at 5.0
    Then the alert status should be OFF
    When the stock is traded at 11.0
    Then the alert status should be ON

  Scenario: Status alert is never activated
    Given a stock of prices 0.5,1.0 and a threshold of 15.0
    When the stock is traded at 5.0
    Then the alert status should be OFF
    When the stock is traded at 11.0
    Then the alert status should be OFF

  Scenario: Trader sells all stocks
    # Given the following table
    #   | a | b |
    #   | 1 | 2 |
    #   | 3 | 4 |
    Given a trader of name Mauro
    Given a stock of prices 0.5,1.0 and a threshold of 1.5
    When the stock is traded at 2.0
    Then the trader sells all stocks
    And the trader gets a bonus

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
aslakhellesoy-cucumber-0.1.100.1 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.1.100.2 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.1.100.3 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.1.100.4 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.1.100.5 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.2.0.1 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.2.0.2 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.2.0.3 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.2.0.4 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.2.0 examples/jbehave/features/trading.feature
aslakhellesoy-cucumber-0.2.1 examples/jbehave/features/trading.feature
kosmas58-cucumber-0.1.100.5 examples/jbehave/features/trading.feature
kosmas58-cucumber-0.2.0.1 examples/jbehave/features/trading.feature
kosmas58-cucumber-0.2.0 examples/jbehave/features/trading.feature
cucumber-0.2.0 examples/jbehave/features/trading.feature
cucumber-0.2.1 examples/jbehave/features/trading.feature