diff -r f240a2d72891 Lib/test/test_ftplib.py --- a/Lib/test/test_ftplib.py Mon Aug 12 18:04:41 2013 -0400 +++ b/Lib/test/test_ftplib.py Mon Aug 12 18:08:46 2013 -0400 @@ -530,6 +530,14 @@ def test_rmd(self): self.client.rmd('foo') + def test_cwd(self): + dir = self.client.cwd('/foo') + self.assertEqual(dir, '250 cwd ok') + + def test_mkd(self): + dir = self.client.mkd('/foo') + self.assertEqual(dir, '/foo') + def test_pwd(self): dir = self.client.pwd() self.assertEqual(dir, 'pwd ok')