Class: Fog::Compute::Glesys::Mock
- Inherits:
-
Object
- Object
- Fog::Compute::Glesys::Mock
- Defined in:
- lib/fog/glesys/compute.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
43 44 45 46 47 48 |
# File 'lib/fog/glesys/compute.rb', line 43 def initialize(={}) @api_url = [:glesys_api_url] || API_URL @glesys_username = [:glesys_username] @glesys_api_key = [:glesys_api_key] @connection_options = [:connection_options] || {} end |
Class Method Details
.data ⇒ Object
50 51 52 53 |
# File 'lib/fog/glesys/compute.rb', line 50 def self.data @data ||= { } end |
.reset ⇒ Object
55 56 57 |
# File 'lib/fog/glesys/compute.rb', line 55 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
59 60 61 |
# File 'lib/fog/glesys/compute.rb', line 59 def data self.class.data end |
#reset_data ⇒ Object
63 64 65 |
# File 'lib/fog/glesys/compute.rb', line 63 def reset_data self.class.reset end |