~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_remember_option.py

  • Committer: Vincent Ladeuil
  • Date: 2011-05-17 15:01:58 UTC
  • mto: This revision was merged to the branch mainline in revision 5884.
  • Revision ID: v.ladeuil+lp@free.fr-20110517150158-0pub4z502vrji1ao
Add news entry and same comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    )
25
25
 
26
26
 
27
 
def pull_first_use(test):
28
 
    test.run_script('''
29
 
        $ bzr init parent
30
 
        $ cd parent
31
 
        $ echo parent > file
32
 
        $ bzr commit -m 'parent'
33
 
        $ cd ..
34
 
        $ bzr branch parent %(working_dir)s
35
 
        $ cd parent
36
 
        $ echo new content > file
37
 
        $ bzr commit -m 'new content'
38
 
        $ cd ..
39
 
''' % {'working_dir': test.working_dir}, null_output_matches_anything=True)
40
 
 
41
 
 
42
 
 
43
27
class TestRememberMixin(object):
44
28
    """--remember and --no-remember set locations or not."""
45
29