Sha256: 3e0bc72a49ca2034f09ef96818e0af15fe72a1d15fcef50095853bd278c82c41

Contents?: true

Size: 1002 Bytes

Versions: 4

Compression:

Stored size: 1002 Bytes

Contents

@open_flow10
Feature: Pio::TableStats::Request
  Scenario: new
    When I try to create an OpenFlow message with:
      """
      Pio::TableStats::Request.new
      """
    Then it should finish successfully
    And the message has the following fields and values:
      | field          |  value |
      | ofp_version    |      1 |
      | message_type   |     16 |
      | message_length |     12 |
      | transaction_id |      0 |
      | xid            |      0 |
      | stats_type     | :table |

  Scenario: new(transaction_id: 123)
    When I try to create an OpenFlow message with:
      """
      Pio::TableStats::Request.new(transaction_id: 123)
      """
    Then it should finish successfully
    And the message has the following fields and values:
      | field          |  value |
      | ofp_version    |      1 |
      | message_type   |     16 |
      | message_length |     12 |
      | transaction_id |    123 |
      | xid            |    123 |
      | stats_type     | :table |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pio-0.30.0 features/open_flow10/table_stats_request.feature
pio-0.29.0 features/open_flow10/table_stats_request.feature
pio-0.28.1 features/open_flow10/table_stats_request.feature
pio-0.28.0 features/open_flow10/table_stats_request.feature