Sha256: 971c879331605b00ae56894c9159f8579f2d28d5c438c3ac7c927a91e9342304
Contents?: true
Size: 546 Bytes
Versions: 43
Compression:
Stored size: 546 Bytes
Contents
require 'spec_helper' describe CopyTunerClient do before do CopyTunerClient.configuration.stubs(:cache => 'cache', :client => 'client') end it 'delegates cache to the configuration object' do CopyTunerClient.cache.should == 'cache' CopyTunerClient.configuration.should have_received(:cache).once end it 'delegates client to the configuration object' do CopyTunerClient.client.should == 'client' CopyTunerClient.configuration.should have_received(:client).once end end
Version data entries
43 entries across 43 versions & 1 rubygems