remap S3.objects.all options from symbol to string for the sake of the mocks

This commit is contained in:
Wesley Beary 2010-01-05 17:27:09 -08:00
Родитель d13219cc15
Коммит acdb9086fd
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -24,7 +24,10 @@ module Fog
def get(name, options = {})
remap_attributes(options, {
:max_keys => 'max-keys',
:delimiter => 'delimiter',
:marker => 'marker',
:max_keys => 'max-keys',
:prefix => 'prefix'
})
data = connection.get_bucket(name, options).body
bucket = new(:name => data['Name'])