Sha256: a8c0ab686ee2a7230edd543709fe1d53638de9f8824584f05bf949b48ab5242d

Contents?: true

Size: 947 Bytes

Versions: 1

Compression:

Stored size: 947 Bytes

Contents

Feature: Pio::NiciraResubmit

  Scenario: new(1)
    When I try to create an OpenFlow action with:
      """
      Pio::NiciraResubmit.new(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            |      1 |
      | in_port            |      1 |

  Scenario: new(:in_port)
    When I try to create an OpenFlow action with:
      """
      Pio::NiciraResubmit.new(:in_port)
      """
    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            |        1 |
      | in_port            | :in_port |

Version data entries

1 entries across 1 versions & 1 rubygems

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