~bzr/ubuntu/lucid/bzr/beta-ppa

« back to all changes in this revision

Viewing changes to bzrlib/tests/treeshape.py

  • Committer: Martin Pool
  • Date: 2010-08-18 04:26:39 UTC
  • mfrom: (129.1.8 packaging-karmic)
  • Revision ID: mbp@sourcefrog.net-20100818042639-mjoxtngyjwiu05fo
* PPA rebuild for lucid.
* PPA rebuild for karmic.
* PPA rebuild onto jaunty.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
 
1
# Copyright (C) 2005, 2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
41
41
 
42
42
    The template is built relative to the Python process's current
43
43
    working directory.
 
44
 
 
45
    ('foo/',) will build a directory.
 
46
    ('foo', 'bar') will write 'bar' to 'foo'
 
47
    ('foo@', 'linktarget') will raise an error
44
48
    """
45
49
    for tt in template:
46
50
        name = tt[0]
47
51
        if name[-1] == '/':
48
52
            os.mkdir(name)
49
53
        elif name[-1] == '@':
50
 
            raise NotImplementedError('symlinks not handled yet')
 
54
            os.symlink(tt[1], tt[0][:-1])
51
55
        else:
52
56
            f = file(name, 'wb')
53
57
            try: