Ensure syntax correctness in network.rb

This commit is contained in:
ChillerDragon 2022-11-13 11:45:32 +01:00
parent 36a5100230
commit a663bae03b

11
spec/08_network_spec.rb Normal file
View file

@ -0,0 +1,11 @@
# frozen_string_literal: true
require_relative '../lib/network'
describe 'Network', :network do
context 'Should not crash' do
it 'Should set SERVER_TICK_SPEED' do
expect(SERVER_TICK_SPEED).to eq(50)
end
end
end