コード例 #1
0
ファイル: test_ftp_client.py プロジェクト: borysiasty/inasafe
 def test_has_file(self):
     """Test that the ftp client can check if a file exists"""
     client = FtpClient()
     input_file = '20120726022003.inp.zip'
     message = ('Expected that %s exists on the server' % input_file)
     self.assertTrue(client.has_file(input_file), message)
コード例 #2
0
 def test_has_file(self):
     """Test that the ftp client can check if a file exists"""
     client = FtpClient()
     input_file = '20120726022003.inp.zip'
     message = ('Expected that %s exists on the server' % input_file)
     self.assertTrue(client.has_file(input_file), message)