Sha256: 7f8c2e55cab72efd5a58eb844f0186d61b970b6c2e1080835f02fdcc53dec97a

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

@open_flow13
Feature: Pio::GotoTable
  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 |
      | to_binary_s.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 | 
      | to_binary_s.length |              8 |
      | table_id           |              1 |

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pio-0.24.2 features/open_flow13/goto_table.feature
pio-0.24.1 features/open_flow13/goto_table.feature
pio-0.24.0 features/open_flow13/goto_table.feature