Sha256: 0d8cc0fc1715e535d0412e1571137f7387c3109471677a81b95cf9674dd9f361

Contents?: true

Size: 876 Bytes

Versions: 2

Compression:

Stored size: 876 Bytes

Contents

@open_flow10
Feature: PortStats::Request
  Scenario: new(:none)
    When I create an OpenFlow message with:
      """
      Pio::OpenFlow10::PortStats::Request.new(:none)
      """
    Then the message has the following fields and values:
      | field          | value |
      | version        |     1 |
      | transaction_id |     0 |
      | xid            |     0 |
      | stats_type     | :port |
      | port           | :none |

  Scenario: new(:none, transaction_id: 123)
    When I create an OpenFlow message with:
      """
      Pio::OpenFlow10::PortStats::Request.new(:none, transaction_id: 123)
      """
    Then the message has the following fields and values:
      | field          | value |
      | version        |     1 |
      | transaction_id |   123 |
      | xid            |   123 |
      | stats_type     | :port |
      | port           | :none |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pio-0.30.2 features/open_flow10/port_stats_request.feature
pio-0.30.1 features/open_flow10/port_stats_request.feature