Class: Fog::Storage::K5::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/storage/k5/mock.rb,
lib/fog/storage/k5/requests/get_object.rb,
lib/fog/storage/k5/requests/put_object.rb,
lib/fog/storage/k5/requests/list_objects.rb,
lib/fog/storage/k5/requests/delete_object.rb,
lib/fog/storage/k5/requests/list_containers.rb

Instance Method Summary collapse

Constructor Details

#initialize(_options = {}) ⇒ Mock

Returns a new instance of Mock.



5
6
7
# File 'lib/fog/storage/k5/mock.rb', line 5

def initialize(_options = {})
  Fog::Mock.not_implemented
end

Instance Method Details

#delete_object(_container, _object, _options = {}) ⇒ Object



15
16
17
# File 'lib/fog/storage/k5/requests/delete_object.rb', line 15

def delete_object(_container, _object, _options = {})
  Fog::Mock.not_implemented
end

#get_object(_container, _object, _options = {}) ⇒ Object



15
16
17
# File 'lib/fog/storage/k5/requests/get_object.rb', line 15

def get_object(_container, _object, _options = {})
  Fog::Mock.not_implemented
end

#list_containers(_options = {}) ⇒ Object



15
16
17
# File 'lib/fog/storage/k5/requests/list_containers.rb', line 15

def list_containers(_options = {})
  Fog::Mock.not_implemented
end

#list_objects(_container, _options = {}) ⇒ Object



15
16
17
# File 'lib/fog/storage/k5/requests/list_objects.rb', line 15

def list_objects(_container, _options = {})
  Fog::Mock.not_implemented
end

#put_object(_container, _object, _data, _options = {}) ⇒ Object



18
19
20
# File 'lib/fog/storage/k5/requests/put_object.rb', line 18

def put_object(_container, _object, _data, _options = {})
  Fog::Mock.not_implemented
end