Sha256: df1d654695b2492bf50057979913b9600b1a58677626f90eb3eadbd8de033649

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

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

1 entries across 1 versions & 1 rubygems

Version Path
pio-0.30.0 features/open_flow/nicira_resubmit_table.feature