Class: Etna::Filesystem::Mock::MockStat
- Inherits:
-
Object
- Object
- Etna::Filesystem::Mock::MockStat
- Defined in:
- lib/etna/filesystem.rb
Instance Method Summary collapse
-
#initialize(io) ⇒ MockStat
constructor
A new instance of MockStat.
- #size ⇒ Object
Constructor Details
#initialize(io) ⇒ MockStat
Returns a new instance of MockStat.
485 486 487 |
# File 'lib/etna/filesystem.rb', line 485 def initialize(io) @io = io end |
Instance Method Details
#size ⇒ Object
489 490 491 |
# File 'lib/etna/filesystem.rb', line 489 def size @io.respond_to?(:length) ? @io.length : 0 end |