diff --git a/spec/08_network_spec.rb b/spec/08_network_spec.rb new file mode 100644 index 0000000..06db38b --- /dev/null +++ b/spec/08_network_spec.rb @@ -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