Class: Fog::Storage::Local::Mock
- Inherits:
-
Object
- Object
- Fog::Storage::Local::Mock
- Defined in:
- lib/fog/local/storage.rb
Instance Attribute Summary collapse
-
#endpoint ⇒ Object
readonly
Returns the value of attribute endpoint.
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #local_root ⇒ Object
- #path_to(partial) ⇒ Object
- #reset_data ⇒ Object
Constructor Details
Instance Attribute Details
#endpoint ⇒ Object (readonly)
Returns the value of attribute endpoint.
18 19 20 |
# File 'lib/fog/local/storage.rb', line 18 def endpoint @endpoint end |
Class Method Details
.data ⇒ Object
20 21 22 23 24 |
# File 'lib/fog/local/storage.rb', line 20 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
26 27 28 |
# File 'lib/fog/local/storage.rb', line 26 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
38 39 40 |
# File 'lib/fog/local/storage.rb', line 38 def data self.class.data[@local_root] end |
#local_root ⇒ Object
42 43 44 |
# File 'lib/fog/local/storage.rb', line 42 def local_root @local_root end |
#path_to(partial) ⇒ Object
46 47 48 |
# File 'lib/fog/local/storage.rb', line 46 def path_to(partial) ::File.join(@local_root, partial) end |
#reset_data ⇒ Object
50 51 52 |
# File 'lib/fog/local/storage.rb', line 50 def reset_data self.class.data.delete(@local_root) end |