Module: RIO::FS::Test
- Included in:
- Native, ZipFile::InFile::FS, ZipFile::RootDir::FS
- Defined in:
- lib/rio/fs/impl.rb
Instance Method Summary collapse
- #blockdev?(s, *args) ⇒ Boolean
- #chardev?(s, *args) ⇒ Boolean
- #dir?(s, *args) ⇒ Boolean
- #directory?(s, *args) ⇒ Boolean
- #executable?(s, *args) ⇒ Boolean
- #executable_real?(s, *args) ⇒ Boolean
- #exist?(s, *args) ⇒ Boolean
- #file?(s, *args) ⇒ Boolean
- #grpowned?(s, *args) ⇒ Boolean
- #owned?(s, *args) ⇒ Boolean
- #pipe?(s, *args) ⇒ Boolean
- #readable?(s, *args) ⇒ Boolean
- #readable_real?(s, *args) ⇒ Boolean
- #setgid?(s, *args) ⇒ Boolean
- #setuid?(s, *args) ⇒ Boolean
- #size(s, *args) ⇒ Object
- #size?(s, *args) ⇒ Boolean
- #socket?(s, *args) ⇒ Boolean
- #sticky?(s, *args) ⇒ Boolean
- #symlink?(s, *args) ⇒ Boolean
- #writable?(s, *args) ⇒ Boolean
- #writable_real?(s, *args) ⇒ Boolean
- #zero?(s, *args) ⇒ Boolean
Instance Method Details
#blockdev?(s, *args) ⇒ Boolean
69 |
# File 'lib/rio/fs/impl.rb', line 69 def blockdev?(s,*args) @test.blockdev?(s,*args) end |
#chardev?(s, *args) ⇒ Boolean
70 |
# File 'lib/rio/fs/impl.rb', line 70 def chardev?(s,*args) @test.chardev?(s,*args) end |
#dir?(s, *args) ⇒ Boolean
72 |
# File 'lib/rio/fs/impl.rb', line 72 def dir?(s,*args) @test.directory?(s,*args) end |
#directory?(s, *args) ⇒ Boolean
71 |
# File 'lib/rio/fs/impl.rb', line 71 def directory?(s,*args) @test.directory?(s,*args) end |
#executable?(s, *args) ⇒ Boolean
73 |
# File 'lib/rio/fs/impl.rb', line 73 def executable?(s,*args) @test.executable?(s,*args) end |
#executable_real?(s, *args) ⇒ Boolean
74 |
# File 'lib/rio/fs/impl.rb', line 74 def executable_real?(s,*args) @test.executable_real?(s,*args) end |
#exist?(s, *args) ⇒ Boolean
75 |
# File 'lib/rio/fs/impl.rb', line 75 def exist?(s,*args) @test.exist?(s,*args) end |
#file?(s, *args) ⇒ Boolean
76 |
# File 'lib/rio/fs/impl.rb', line 76 def file?(s,*args) @test.file?(s,*args) end |
#grpowned?(s, *args) ⇒ Boolean
77 |
# File 'lib/rio/fs/impl.rb', line 77 def grpowned?(s,*args) @test.grpowned?(s,*args) end |
#owned?(s, *args) ⇒ Boolean
78 |
# File 'lib/rio/fs/impl.rb', line 78 def owned?(s,*args) @test.owned?(s,*args) end |
#pipe?(s, *args) ⇒ Boolean
79 |
# File 'lib/rio/fs/impl.rb', line 79 def pipe?(s,*args) @test.pipe?(s,*args) end |
#readable?(s, *args) ⇒ Boolean
80 |
# File 'lib/rio/fs/impl.rb', line 80 def readable?(s,*args) @test.readable?(s,*args) end |
#readable_real?(s, *args) ⇒ Boolean
81 |
# File 'lib/rio/fs/impl.rb', line 81 def readable_real?(s,*args) @test.readable_real?(s,*args) end |
#setgid?(s, *args) ⇒ Boolean
82 |
# File 'lib/rio/fs/impl.rb', line 82 def setgid?(s,*args) @test.setgid?(s,*args) end |
#setuid?(s, *args) ⇒ Boolean
83 |
# File 'lib/rio/fs/impl.rb', line 83 def setuid?(s,*args) @test.setuid?(s,*args) end |
#size(s, *args) ⇒ Object
84 |
# File 'lib/rio/fs/impl.rb', line 84 def size(s,*args) @test.size(s,*args) end |
#size?(s, *args) ⇒ Boolean
85 |
# File 'lib/rio/fs/impl.rb', line 85 def size?(s,*args) @test.size?(s,*args) end |
#socket?(s, *args) ⇒ Boolean
86 |
# File 'lib/rio/fs/impl.rb', line 86 def socket?(s,*args) @test.socket?(s,*args) end |
#sticky?(s, *args) ⇒ Boolean
87 |
# File 'lib/rio/fs/impl.rb', line 87 def sticky?(s,*args) @test.sticky?(s,*args) end |
#symlink?(s, *args) ⇒ Boolean
88 |
# File 'lib/rio/fs/impl.rb', line 88 def symlink?(s,*args) @test.symlink?(s,*args) end |
#writable?(s, *args) ⇒ Boolean
89 |
# File 'lib/rio/fs/impl.rb', line 89 def writable?(s,*args) @test.writable?(s,*args) end |
#writable_real?(s, *args) ⇒ Boolean
90 |
# File 'lib/rio/fs/impl.rb', line 90 def writable_real?(s,*args) @test.writable_real?(s,*args) end |
#zero?(s, *args) ⇒ Boolean
91 |
# File 'lib/rio/fs/impl.rb', line 91 def zero?(s,*args) @test.zero?(s,*args) end |