Sha256: a4e8aa32573889af6c787bdbce70d086aee752154e94d50ca48d46622aac58b8
Contents?: true
Size: 949 Bytes
Versions: 1
Compression:
Stored size: 949 Bytes
Contents
# frozen_string_literal: true require 'pio/open_flow10/set_destination_mac_address' describe Pio::OpenFlow10::SetDestinationMacAddress do describe '.new' do Given(:set_destination_mac_address) do Pio::OpenFlow10::SetDestinationMacAddress.new(mac_address) end context "with '11:22:33:44:55:66'" do When(:mac_address) { '11:22:33:44:55:66' } Then { set_destination_mac_address.mac_address == '11:22:33:44:55:66' } describe '#to_binary' do Then { set_destination_mac_address.to_binary.length == 16 } end end context 'with 0x112233445566' do When(:mac_address) { 0x112233445566 } Then { set_destination_mac_address.mac_address == '11:22:33:44:55:66' } end context "with Pio::Mac.new('11:22:33:44:55:66')" do When(:mac_address) { Pio::Mac.new('11:22:33:44:55:66') } Then { set_destination_mac_address.mac_address == '11:22:33:44:55:66' } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pio-0.30.2 | spec/pio/open_flow10/set_destination_mac_address_spec.rb |