Changeset 537 in tailor
- Timestamp:
- 08/09/05 11:24:29 (8 years ago)
- Hash name:
- 20050809092429-97f81-83a0225f3f4509aa8710fd16f6e28322a509d32e
- File:
-
- 1 edited
-
vcpx/tests/tailor.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/tests/tailor.py
r530 r537 26 26 start-revision = Almost arbitrarily tagging this as version 0.8 27 27 28 [darcs2bzr] 29 target = bzr:tailor 30 root-directory = /tmp/tailor-tests/darcs2bzr 31 source = darcs:tailor 32 33 [darcs2cdv] 34 target = cdv:tailor 35 root-directory = /tmp/tailor-tests/darcs2cdv 36 source = darcs:tailor 37 28 38 [darcs2hg] 29 39 target = hg:tailor … … 38 48 [darcs:tailor] 39 49 repository = ~/WiP/cvsync 50 51 [bzr:tailor] 52 bzr-command = /opt/src/bzr.dev/bzr 53 54 [cdv:tailor] 40 55 41 56 [hg:tailor] … … 64 79 from atexit import register 65 80 from shutil import rmtree 66 81 67 82 self.config = Config(StringIO(__doc__), {}) 68 83 if not exists('/tmp/tailor-tests'): … … 70 85 register(rmtree, '/tmp/tailor-tests') 71 86 72 def testDarcsTo SubversionBootstrap(self):73 "Test darcs to subversionbootstrap"87 def testDarcsToBazaarngBootstrap(self): 88 "Test darcs to BazaarNG bootstrap" 74 89 75 project = self.config['darcs2 svn']90 project = self.config['darcs2bzr'] 76 91 tailorizer = Tailorizer(project) 77 92 tailorizer(BootstrapOptions()) 78 93 79 def testDarcsTo SubversionUpdate(self):80 "Test darcs to subversionupdate"94 def testDarcsToBazaarngUpdate(self): 95 "Test darcs to BazaarNG update" 81 96 82 project = self.config['darcs2 svn']97 project = self.config['darcs2bzr'] 83 98 tailorizer = Tailorizer(project) 84 99 tailorizer(UpdateOptions()) … … 97 112 tailorizer = Tailorizer(project) 98 113 tailorizer(UpdateOptions()) 114 115 def testDarcsToCodevilleBootstrap(self): 116 "Test darcs to codeville bootstrap" 117 118 project = self.config['darcs2cdv'] 119 tailorizer = Tailorizer(project) 120 tailorizer(BootstrapOptions()) 121 122 def testDarcsToCodevilleUpdate(self): 123 "Test darcs to codeville update" 124 125 project = self.config['darcs2cdv'] 126 tailorizer = Tailorizer(project) 127 tailorizer(UpdateOptions()) 128 129 def testDarcsToSubversionBootstrap(self): 130 "Test darcs to subversion bootstrap" 131 132 project = self.config['darcs2svn'] 133 tailorizer = Tailorizer(project) 134 tailorizer(BootstrapOptions()) 135 136 def testDarcsToSubversionUpdate(self): 137 "Test darcs to subversion update" 138 139 project = self.config['darcs2svn'] 140 tailorizer = Tailorizer(project) 141 tailorizer(UpdateOptions())
Note: See TracChangeset
for help on using the changeset viewer.
