This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add in a before(:all) in your test suite for example | |
ls_command = [ | |
"-rw-r--r-- 1 ftp ftp 671686268 Feb 21 03:14 some_file", | |
"drw-r--r-- 1 ftp ftp 671686268 Feb 21 03:14 directory", | |
# ... | |
] | |
class FakeFtp < OpenStruct | |
# So that for example fake_ftp.chdir("path/to/dir") will be send as fake_ftp.chdir | |
def method_missing(method, *args) |