Changeset 627 in tailor
- Timestamp:
- 08/19/05 01:07:48 (8 years ago)
- Hash name:
- 20050818230748-19078-d9f3217485a6dae46df72fd68fd6e21af4909d32
- Location:
- vcpx
- Files:
-
- 1 added
- 2 edited
-
repository.py (modified) (1 diff)
-
tests/tailor.py (modified) (3 diffs)
-
bzrng.py (added)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository.py
r612 r627 113 113 self.BZR_CMD = config.get(self.name, 'bzr-command', self.BZR_CMD) 114 114 115 class BzrngRepository(Repository): 116 METADIR = '.bzr' 117 118 def _load(self, config, which): 119 Repository._load(self, config, which) 120 ppath = config.get(self.name, 'python-path') 121 if ppath: 122 from sys import path 123 124 if ppath not in path: 125 path.insert(0, ppath) 126 115 127 116 128 class CdvRepository(Repository): -
vcpx/tests/tailor.py
r618 r627 29 29 source = darcs:tailor 30 30 31 [darcs2bzrng] 32 target = bzrng:tailor 33 root-directory = /tmp/tailor-tests/darcs2bzrng 34 source = darcs:tailor 35 31 36 [darcs2cdv] 32 37 target = cdv:tailor … … 56 61 [bzr:tailor] 57 62 bzr-command = /opt/src/bzr.dev/bzr 63 64 [bzrng:tailor] 65 python-path = /opt/src/bzr.dev 58 66 59 67 [cdv:tailor] … … 127 135 tailorizer() 128 136 137 def testDarcsToBazaarngNative(self): 138 "Test darcs to BazaarNG (native)" 139 140 tailorizer = Tailorizer('darcs2bzrng', self.config) 141 tailorizer() 142 self.assert_(tailorizer.exists()) 143 tailorizer() 144 129 145 def testDarcsToMercurial(self): 130 146 "Test darcs to mercurial"
Note: See TracChangeset
for help on using the changeset viewer.
