Sha256: c60bb52e699bbbfa6c9a138e683ab2958540d4e2119733c490a42f0fe6ac4a08

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

@open_flow10
Feature: Pio::NiciraResubmitTable

  Scenario: new(in_port: 1, table: 1)
    When I try to create an OpenFlow action with:
      """
      Pio::NiciraResubmitTable.new(in_port: 1, table: 1)
      """
    Then it should finish successfully
    And the action has the following fields and values:
      | field              |  value |
      | action_type.to_hex | 0xffff |
      | action_length      |     16 |
      | vendor.to_hex      | 0x2320 |
      | subtype            |     14 |
      | in_port            |      1 |
      | table              |      1 |

  Scenario: new(:in_port)
    When I try to create an OpenFlow action with:
      """
      Pio::NiciraResubmitTable.new(in_port: 1)
      """
    Then it should finish successfully
    And the action has the following fields and values:
      | field              |  value |
      | action_type.to_hex | 0xffff |
      | action_length      |     16 |
      | vendor.to_hex      | 0x2320 |
      | subtype            |     14 |
      | in_port            |      1 |
      | table.to_hex       |   0xff |

Version data entries

3 entries across 3 versions & 1 rubygems

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