Sha256: 579322d1360a2f3b52f6f416ba62bff9db10fdd2fc6fa834d035b5d93ec5fa68
Contents?: true
Size: 1.18 KB
Versions: 9
Compression:
Stored size: 1.18 KB
Contents
@open_flow13 Feature: Pio::WriteMetadata Scenario: new(metadata: 1) When I try to create an OpenFlow instruction with: """ Pio::WriteMetadata.new(metadata: 1) """ Then it should finish successfully And the message has the following fields and values: | field | value | | class | Pio::WriteMetadata | | instruction_type | 2 | | instruction_length | 24 | | to_binary_s.length | 24 | | metadata | 1 | | metadata_mask | 0 | Scenario: read When I try to parse a file named "open_flow13/instruction_write_metadata.raw" with "Pio::WriteMetadata" class Then it should finish successfully And the message has the following fields and values: | field | value | | class | Pio::WriteMetadata | | instruction_type | 2 | | instruction_length | 24 | | to_binary_s.length | 24 | | metadata | 1 | | metadata_mask | 1 |
Version data entries
9 entries across 9 versions & 1 rubygems