2022-11-11 12:42:11 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-11-16 08:37:47 +00:00
|
|
|
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
|