teeworlds_network/spec/07_game_info_spec.rb

12 lines
256 B
Ruby
Raw Permalink Normal View History

2022-11-11 12:42:11 +00:00
# frozen_string_literal: true
require_relative '../lib/messages/game_info'
2022-11-11 12:42:11 +00:00
describe 'GameInfo', :game_info do
context 'Pack to network' do
it 'Should match expected array' do
expect(GameInfo.new.to_a).to eq([0, 0, 0, 0, 0])
end
end
end