コード例 #1
0
 def test_download_1(self):
     retString = download(self.goodurl)
     self.assertIsInstance(
         retString, 
         str, 
         msg='Returned Object is not a string')
コード例 #2
0
 def test_download_1(self):
     retString = download(self.goodurl)
     self.assertIsInstance(retString,
                           str,
                           msg='Returned Object is not a string')
コード例 #3
0
 def test_download_fail_2(self):
     with self.assertRaises(ValueError):
         download(self.badurl2)
コード例 #4
0
 def test_download_fail_2(self):
     with self.assertRaises(ValueError):
         download(self.badurl2)