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.
51 52 53 54 55 56 |
# File 'lib/fog/glesys/compute.rb', line 51 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
58 59 60 61 |
# File 'lib/fog/glesys/compute.rb', line 58 def self.data @data ||= { } end |
.reset ⇒ Object
63 64 65 |
# File 'lib/fog/glesys/compute.rb', line 63 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
67 68 69 |
# File 'lib/fog/glesys/compute.rb', line 67 def data self.class.data end |
#reset_data ⇒ Object
71 72 73 |
# File 'lib/fog/glesys/compute.rb', line 71 def reset_data self.class.reset end |