Changeset 611 in tailor
- Timestamp:
- 08/17/05 03:20:30 (8 years ago)
- Hash name:
- 20050817012030-97f81-85c85e7bae7ebe02bc779b0d56b0bda781d5bfa1
- File:
-
- 1 edited
-
vcpx/tests/tailor.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/tests/tailor.py
r610 r611 101 101 '/tmp/tailor-tests/darcs2svn/tailor.state') 102 102 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" 107 105 108 106 tailorizer = Tailorizer('darcs2bzr', self.config) 109 107 tailorizer() 110 111 def testDarcsToBazaarngUpdate(self): 112 "Test darcs to BazaarNG update" 113 114 tailorizer = Tailorizer('darcs2bzr', self.config) 108 self.assert_(tailorizer.exists()) 115 109 tailorizer() 116 110 117 def testDarcsToMercurial Bootstrap(self):118 "Test darcs to mercurial bootstrap"111 def testDarcsToMercurial(self): 112 "Test darcs to mercurial" 119 113 120 114 tailorizer = Tailorizer('darcs2hg', self.config) 121 115 tailorizer() 122 123 def testDarcsToMercurialUpdate(self): 124 "Test darcs to mercurial update" 125 126 tailorizer = Tailorizer('darcs2hg', self.config) 116 self.assert_(tailorizer.exists()) 127 117 tailorizer() 128 118 129 def testDarcsToCodeville Bootstrap(self):130 "Test darcs to codeville bootstrap"119 def testDarcsToCodeville(self): 120 "Test darcs to codeville" 131 121 132 122 tailorizer = Tailorizer('darcs2cdv', self.config) 133 123 tailorizer() 134 135 def testDarcsToCodevilleUpdate(self): 136 "Test darcs to codeville update" 137 138 tailorizer = Tailorizer('darcs2cdv', self.config) 124 self.assert_(tailorizer.exists()) 139 125 tailorizer() 140 126 141 def testDarcsToSubversion Bootstrap(self):142 "Test darcs to subversion bootstrap"127 def testDarcsToSubversion(self): 128 "Test darcs to subversion" 143 129 144 130 tailorizer = Tailorizer('darcs2svn', self.config) 145 131 tailorizer() 146 147 def testDarcsToSubversionUpdate(self): 148 "Test darcs to subversion update" 149 150 tailorizer = Tailorizer('darcs2svn', self.config) 132 self.assert_(tailorizer.exists()) 151 133 tailorizer() 152 134 153 135 ## The other way 154 136 155 def testSubversionToDarcs Bootstrap(self):156 "Test reversed darcs to subversion bootstrap"137 def testSubversionToDarcs(self): 138 "Test subversion to darcs" 157 139 158 140 tailorizer = Tailorizer('svn2darcs', self.config) 159 141 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()) 165 143 tailorizer()
Note: See TracChangeset
for help on using the changeset viewer.
