Sha256: a81be93f629182150e773126b50ba4aae33b0e7f41e57e74ee52d33b299aead9
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true require 'pio/open_flow10/set_transport_port' describe Pio::OpenFlow10::SetTransportSourcePort do describe '.new' do When(:set_transport_source_port) do Pio::OpenFlow10::SetTransportSourcePort.new port end context 'with 100' do When(:port) { 100 } describe '#port' do Then { set_transport_source_port.port == 100 } end describe '#action_type' do Then { set_transport_source_port.action_type == 9 } end describe '#action_length' do Then { set_transport_source_port.action_length == 8 } end describe '#to_binary' do Then { set_transport_source_port.to_binary.length == 8 } end end context 'with -1' do When(:port) { -1 } Then { set_transport_source_port == Failure(ArgumentError) } end context 'with 2**16' do When(:port) { 2**16 } Then { set_transport_source_port == Failure(ArgumentError) } end context 'with :INVALID_PORT_NUMBER' do When(:port) { :INVALID_PORT_NUMBER } Then { set_transport_source_port == Failure(TypeError) } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pio-0.30.2 | spec/pio/open_flow10/set_transport_source_port_spec.rb |