Beispiel #1
0
 def test_which_platform(self):
     u = 'http://pypi.python.org/pypi/simple/acme'
     files = (('Mac OS X',
               'iw.quality-0.1dev-r6420.macosx-10.3-fat.tar.gz'),
              ('All platforms', 'iw.quality-0.1dev_r6420-py2.5.egg'),
              ('All platforms', 'iw.quality-0.1dev-r6420.tar.gz'),
              ('Mac OS X',
               '%s/iw.quality-0.1dev-r6420.macosx-10.3-fat.tar.gz' % u))
     for wanted, name in files:
         self.assertEquals(which_platform(name), wanted)
 def test_which_platform(self):
     u = 'http://pypi.python.org/pypi/simple/acme'
     files = (('Mac OS X',
               'iw.quality-0.1dev-r6420.macosx-10.3-fat.tar.gz'),
              ('All platforms', 'iw.quality-0.1dev_r6420-py2.5.egg'),
              ('All platforms', 'iw.quality-0.1dev-r6420.tar.gz'),
              ('Mac OS X',
               '%s/iw.quality-0.1dev-r6420.macosx-10.3-fat.tar.gz' % u)
             )
     for wanted, name in files:
         self.assertEquals(which_platform(name), wanted)
 def _setPlatform(self, release_file, filename):
     platforms = release_file.getPlatformVocab()
     founded = which_platform(filename)
     if founded in platforms:
         release_file.setPlatform(founded)
     return release_file.setPlatform(platforms[0])
Beispiel #4
0
 def _setPlatform(self, release_file, filename):
     platforms = release_file.getPlatformVocab()
     founded = which_platform(filename)
     if founded in platforms:
         release_file.setPlatform(founded)
     return release_file.setPlatform(platforms[0])