Sha256: c800b5069e188057c7d7296463e9ad1b7b9641b29655627afead3f0a5170e6bb

Contents?: true

Size: 849 Bytes

Versions: 2

Compression:

Stored size: 849 Bytes

Contents

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

  Scenario: new(transaction_id: 123)
    When I create an OpenFlow message with:
      """
      Pio::Hello.new(transaction_id: 123)
      """
    Then the message has the following fields and values:
      | field              |          value |
      | version            |              4 |
      | transaction_id     |            123 |
      | xid                |            123 |
      | supported_versions | [:open_flow13] |

Version data entries

2 entries across 2 versions & 1 rubygems

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