Sha256: bec7e274a98d9173620399e46793219b7c3dac536d4e2722bef0d47079876166

Contents?: true

Size: 755 Bytes

Versions: 2

Compression:

Stored size: 755 Bytes

Contents

@open_flow13
Feature: Features::Request
  Scenario: new
    When I create an OpenFlow message with:
      """
      Pio::Features::Request.new
      """
    Then the message has the following fields and values:
      | field          | value |
      | version        |     4 |
      | transaction_id |     0 |
      | xid            |     0 |
      | body           |       |

  Scenario: new(transaction_id: 123)
    When I create an OpenFlow message with:
      """
      Pio::Features::Request.new(transaction_id: 123)
      """
    Then the message has the following fields and values:
      | field          | value |
      | version        |     4 |
      | transaction_id |   123 |
      | xid            |   123 |
      | body           |       |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pio-0.30.2 features/open_flow13/features_request.feature
pio-0.30.1 features/open_flow13/features_request.feature