Sha256: 7e50894af66f2cd647564c7695ef711c72d69688e0d3f331a323fb9f8a9e83b6
Contents?: true
Size: 349 Bytes
Versions: 7
Compression:
Stored size: 349 Bytes
Contents
require 'spec_helper' describe LIFX::Transport do # Transport handles communicating to the bulbs # UDP, TCP, Cloud describe 'initialize' do it 'takes an host and port' do transport = LIFX::Transport.new('127.0.0.1', 31_337) expect(transport.host).to eq '127.0.0.1' expect(transport.port).to eq 31_337 end end end
Version data entries
7 entries across 7 versions & 1 rubygems