We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e19819b commit 2abeac8Copy full SHA for 2abeac8
tests/test_ftpfs.py
@@ -88,6 +88,10 @@ def test_opener(self):
88
self.assertIsInstance(ftp_fs, FTPFS)
89
self.assertEqual(ftp_fs.host, "ftp.example.org")
90
91
+ ftps_fs = open_fs("ftps://will:wfc@ftp.example.org")
92
+ self.assertIsInstance(ftps_fs, FTPFS)
93
+ self.assertTrue(ftps_fs.tls)
94
+
95
96
class TestFTPErrors(unittest.TestCase):
97
"""Test the ftp_errors context manager."""
0 commit comments