1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

fix testing mock

This commit is contained in:
Andrew Kuklewicz 2013-01-31 14:42:04 -05:00
parent 82748f53ec
commit dbc1869be8
2 changed files with 5 additions and 0 deletions

View file

@ -11,6 +11,8 @@ if Fog.mock?
Fog.credentials = {
:aws_access_key_id => 'aws_access_key_id',
:aws_secret_access_key => 'aws_secret_access_key',
:ia_access_key_id => 'aws_access_key_id',
:ia_secret_access_key => 'aws_secret_access_key',
:atmos_storage_token => 'atmos_token',
:atmos_storage_secret => 'atmos_secret',
:atmos_storage_endpoint => 'http://atmos.is.cool:1000/test1.0',

View file

@ -9,6 +9,9 @@ def storage_providers
:hp => {
:mocked => true
},
:internetarchive => {
:mocked => true
},
:local => {
:mocked => false
},