class Fog::Billing::StormOnDemand::Mock
Public Class Methods
data()
click to toggle source
# File lib/fog/storm_on_demand/billing.rb, line 26 def self.data @data ||= Hash.new end
new(options={})
click to toggle source
# File lib/fog/storm_on_demand/billing.rb, line 40 def initialize(options={}) @storm_on_demand_username = options[:storm_on_demand_username] end
reset()
click to toggle source
# File lib/fog/storm_on_demand/billing.rb, line 30 def self.reset @data = nil end
reset_data(keys=data.keys)
click to toggle source
# File lib/fog/storm_on_demand/billing.rb, line 34 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/billing.rb, line 44 def data self.class.data[@storm_on_demand_username] end
reset_data()
click to toggle source
# File lib/fog/storm_on_demand/billing.rb, line 48 def reset_data self.class.data.delete(@storm_on_demand_username) end