Sha256: 12c95441352fd3d28cd149dcbb7819cb7f8c07f681bbda5084945402381e6c8a

Contents?: true

Size: 968 Bytes

Versions: 5

Compression:

Stored size: 968 Bytes

Contents

Feature: Pio::GotoTable
  Background:
    Given I use OpenFlow 1.3

  Scenario: new(1)
    When I try to create an OpenFlow instruction with:
      """
      Pio::GotoTable.new(1)
      """
    Then it should finish successfully
    And the message have the following fields and values:
      | field              |          value |
      | class              | Pio::GotoTable |
      | instruction_type   |              1 |
      | instruction_length |              8 |
      | table_id           |              1 |

  Scenario: read
    When I try to parse a file named "open_flow13/instruction_goto_table.raw" with "Pio::GotoTable" class
    Then it should finish successfully
    And the message have the following fields and values:
      | field              |          value |
      | class              | Pio::GotoTable |
      | instruction_type   |              1 |
      | instruction_length |              8 |
      | table_id           |              1 |

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pio-0.23.1 features/open_flow13/goto_table.feature
pio-0.23.0 features/open_flow13/goto_table.feature
pio-0.22.0 features/open_flow13/goto_table.feature
pio-0.21.1 features/open_flow13/goto_table.feature
pio-0.21.0 features/open_flow13/goto_table.feature