Changeset 1042 in tailor for vcpx/tests/tailor.py
- Timestamp:
- 12/24/05 19:55:47 (7 years ago)
- Hash name:
- 20051224185547-7a6fb-3b0a6becc94e50cea77b4f39c5aa80bcaa73e69a
- File:
-
- 1 edited
-
vcpx/tests/tailor.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/tests/tailor.py
r954 r1042 212 212 module = cmfeditions 213 213 subdir = svnside 214 215 216 [svn2hg] 217 source = svn:plonebook 218 target = hg:plonebook 219 start-revision = 1101 220 root-directory = /tmp/tailor-tests/svn2hg 221 222 [svn:plonebook] 223 repository = http://docit.bice.dyndns.org 224 module = /Plone/PloneBook2/it 225 226 [hg:plonebook] 227 228 [svn2hg_with_externals] 229 source = svn:plonebook_we 230 target = hg:plonebook 231 start-revision = HEAD 232 root-directory = /tmp/tailor-tests/svn2hg_we 233 234 [svn:plonebook_we] 235 repository = http://docit.bice.dyndns.org 236 module = /Plone/PloneBook2/it 237 ignore-externals = False 214 238 ''' 215 239 … … 343 367 344 368 369 class Svn(OperationalTest): 370 "Test the subversion backend" 371 372 def testExternals(self): 373 "Exercise svn to mercurial with and without svn:externals" 374 375 from os.path import exists 376 377 external = '/tmp/tailor-tests/svn2hg%s/test/make/docutils.make' 378 self.tailorize('svn2hg') 379 self.failIf(exists(external % '')) 380 381 self.tailorize('svn2hg_with_externals') 382 self.failUnless(exists(external % '_we')) 383 384 345 385 class Svndump(OperationalTest): 346 386 "Test the svndump source backend (deprecated)"
Note: See TracChangeset
for help on using the changeset viewer.
