Changeset 611 in tailor


Ignore:
Timestamp:
08/17/05 03:20:30 (8 years ago)
Author:
lele@…
Hash name:
20050817012030-97f81-85c85e7bae7ebe02bc779b0d56b0bda781d5bfa1
Message:

Perform the bootstrap and the update in the same test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/tests/tailor.py

    r610 r611  
    101101                         '/tmp/tailor-tests/darcs2svn/tailor.state') 
    102102 
    103     ## Beware: carefully selected docs, methods executed in alpha order! 
    104  
    105     def testDarcsToBazaarngBootstrap(self): 
    106         "Test darcs to BazaarNG bootstrap" 
     103    def testDarcsToBazaarng(self): 
     104        "Test darcs to BazaarNG" 
    107105 
    108106        tailorizer = Tailorizer('darcs2bzr', self.config) 
    109107        tailorizer() 
    110  
    111     def testDarcsToBazaarngUpdate(self): 
    112         "Test darcs to BazaarNG update" 
    113  
    114         tailorizer = Tailorizer('darcs2bzr', self.config) 
     108        self.assert_(tailorizer.exists()) 
    115109        tailorizer() 
    116110 
    117     def testDarcsToMercurialBootstrap(self): 
    118         "Test darcs to mercurial bootstrap" 
     111    def testDarcsToMercurial(self): 
     112        "Test darcs to mercurial" 
    119113 
    120114        tailorizer = Tailorizer('darcs2hg', self.config) 
    121115        tailorizer() 
    122  
    123     def testDarcsToMercurialUpdate(self): 
    124         "Test darcs to mercurial update" 
    125  
    126         tailorizer = Tailorizer('darcs2hg', self.config) 
     116        self.assert_(tailorizer.exists()) 
    127117        tailorizer() 
    128118 
    129     def testDarcsToCodevilleBootstrap(self): 
    130         "Test darcs to codeville bootstrap" 
     119    def testDarcsToCodeville(self): 
     120        "Test darcs to codeville" 
    131121 
    132122        tailorizer = Tailorizer('darcs2cdv', self.config) 
    133123        tailorizer() 
    134  
    135     def testDarcsToCodevilleUpdate(self): 
    136         "Test darcs to codeville update" 
    137  
    138         tailorizer = Tailorizer('darcs2cdv', self.config) 
     124        self.assert_(tailorizer.exists()) 
    139125        tailorizer() 
    140126 
    141     def testDarcsToSubversionBootstrap(self): 
    142         "Test darcs to subversion bootstrap" 
     127    def testDarcsToSubversion(self): 
     128        "Test darcs to subversion" 
    143129 
    144130        tailorizer = Tailorizer('darcs2svn', self.config) 
    145131        tailorizer() 
    146  
    147     def testDarcsToSubversionUpdate(self): 
    148         "Test darcs to subversion update" 
    149  
    150         tailorizer = Tailorizer('darcs2svn', self.config) 
     132        self.assert_(tailorizer.exists()) 
    151133        tailorizer() 
    152134 
    153135    ## The other way 
    154136 
    155     def testSubversionToDarcsBootstrap(self): 
    156         "Test reversed darcs to subversion bootstrap" 
     137    def testSubversionToDarcs(self): 
     138        "Test subversion to darcs" 
    157139 
    158140        tailorizer = Tailorizer('svn2darcs', self.config) 
    159141        tailorizer() 
    160  
    161     def testSubversionToDarcsUpdate(self): 
    162         "Test reversed darcs to subversion update" 
    163  
    164         tailorizer = Tailorizer('svn2darcs', self.config) 
     142        self.assert_(tailorizer.exists()) 
    165143        tailorizer() 
Note: See TracChangeset for help on using the changeset viewer.