コード例 #1
0
ファイル: test_download.py プロジェクト: ccbrown/needy
 def test_get_with_incorrect_checksum(self):
     with self.assertRaises(ValueError):
         Download.get('https://github.com/USCiLab/cereal/archive/v1.2.0.tar.gz',
                      'fd65224cf628119fe1d85cbca63214c4f6a82e75',
                      'destination'
                      )
     self.assertFalse(os.path.exists('destination'))
コード例 #2
0
ファイル: test_download.py プロジェクト: vmrob/needy
 def test_get_with_incorrect_checksum(self):
     with self.assertRaises(ValueError):
         Download.get(
             'https://github.com/USCiLab/cereal/archive/v1.2.0.tar.gz',
             'fd65224cf628119fe1d85cbca63214c4f6a82e75', 'destination')
     self.assertFalse(os.path.exists('destination'))
コード例 #3
0
ファイル: test_download.py プロジェクト: vmrob/needy
 def test_get(self):
     Download.get('https://github.com/USCiLab/cereal/archive/v1.1.2.tar.gz',
                  'fd65224cf628119fe1d85cbca63214c4f6a82e75', 'destination')
     self.assertTrue(os.path.exists('destination'))
コード例 #4
0
ファイル: test_download.py プロジェクト: ccbrown/needy
 def test_get(self):
     Download.get('https://github.com/USCiLab/cereal/archive/v1.1.2.tar.gz',
                  'fd65224cf628119fe1d85cbca63214c4f6a82e75',
                  'destination'
                  )
     self.assertTrue(os.path.exists('destination'))