Sha256: 0e803e78c923d1c1d57a80447079fdc77231a5eaefebac746564268f98898ee0
Contents?: true
Size: 576 Bytes
Versions: 3
Compression:
Stored size: 576 Bytes
Contents
require 'spec_helper' describe Cradlepoint::CradlepointObject do let(:factory_cradlepoint_object) { Cradlepoint::CradlepointObject } let(:cradlepoint_object) { Cradlepoint::CradlepointObject.new } let(:url) { 'https://:@cradlepointecm.com/api/v1/blah' } context 'factory' do it 'should return the correct url' do factory_cradlepoint_object.build_url('/blah').should == url end end context 'initialized object' do it 'should return the correct url' do cradlepoint_object.build_url('/blah').should == url end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cradlepoint-0.2.0 | spec/cradlepoint_object_spec.rb |
cradlepoint-0.1.2 | spec/cradlepoint_object_spec.rb |
cradlepoint-0.1.1 | spec/cradlepoint_object_spec.rb |