class Fog::Storage::StormOnDemand::Mock

Public Class Methods

data() click to toggle source
# File lib/fog/storm_on_demand/storage.rb, line 34
def self.data
  @data ||= Hash.new
end
new(options={}) click to toggle source
# File lib/fog/storm_on_demand/storage.rb, line 48
def initialize(options={})
  @storm_on_demand_username = options[:storm_on_demand_username]
end
reset() click to toggle source
# File lib/fog/storm_on_demand/storage.rb, line 38
def self.reset
  @data = nil
end
reset_data(keys=data.keys) click to toggle source
# File lib/fog/storm_on_demand/storage.rb, line 42
def self.reset_data(keys=data.keys)
  for key in [*keys]
    data.delete(key)
  end
end

Public Instance Methods

data() click to toggle source
# File lib/fog/storm_on_demand/storage.rb, line 52
def data
  self.class.data[@storm_on_demand_username]
end
reset_data() click to toggle source
# File lib/fog/storm_on_demand/storage.rb, line 56
def reset_data
  self.class.data.delete(@storm_on_demand_username)
end