Sha256: 00618223b3e628f944b6f3fc6c61248a3cf5df79f8eb61abb8075a980142ab6b
Contents?: true
Size: 554 Bytes
Versions: 1
Compression:
Stored size: 554 Bytes
Contents
require 'spec_helper' describe CareerBuilder::Client do let(:client) { CareerBuilder::Client.new('valid_username', 'valid_password') } describe '#connection_retry_count' do it 'has a sane default value' do client.connection_retry_count.should == CareerBuilder::Client.connection_retry_count end it 'allows the value to be specified during creation' do client = CareerBuilder::Client.new('valid_username', 'valid_password', :connection_retry_count => 1) client.connection_retry_count.should == 1 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
career_builder-0.2.2 | spec/career_builder/client_spec.rb |