teeworlds_network/spec/02_packet_spec.rb
2022-11-05 17:19:05 +01:00

10 lines
219 B
Ruby

require_relative '../lib/packet'
describe 'Packet', :packet do
context 'Set flag bits' do
it 'Should set the control flag bit' do
expect(PacketFlags.new(control: true).bits).to eq('0001')
end
end
end