Sha256: a2baa0b6858a50b77efc3bf1fb76368162ce8f0f10bd43c743eefcebea9b82b4
Contents?: true
Size: 460 Bytes
Versions: 5
Compression:
Stored size: 460 Bytes
Contents
require_relative 'support/spec_helper' require 'acpc_dealer' include AcpcDealer describe ConnectionInformation do it 'works' do port = 9001 host = 'my host' millisecond_response_timeout = 100 patient = ConnectionInformation.new(port, host, millisecond_response_timeout) patient.port_number.must_equal port patient.host_name.must_equal host patient.millisecond_response_timeout.must_equal millisecond_response_timeout end end
Version data entries
5 entries across 5 versions & 1 rubygems