Sha256: 68938366af4d761b17ac2d84ea8eedc6d5a591a0a71ce06436441a236c5ecee3
Contents?: true
Size: 330 Bytes
Versions: 47
Compression:
Stored size: 330 Bytes
Contents
require "spec_helper" describe "Fog#timeout" do before do @old_timeout = Fog.timeout end after do Fog.timeout = @old_timeout end it "defaults to 600" do assert_equal 600, Fog.timeout end it "can be reassigned through Fog#timeout=" do Fog.timeout = 300 assert_equal 300, Fog.timeout end end
Version data entries
47 entries across 44 versions & 3 rubygems