~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-05-28 17:14:38 UTC
  • mfrom: (4381.2.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090528171438-4bnwgf4n2gcdf9jt
(mbp) tweak message from bzr add

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
        out = self.run_bzr('add')[0]
56
56
        # the ordering is not defined at the moment
57
57
        results = sorted(out.rstrip('\n').split('\n'))
58
 
        self.assertEquals(['If you wish to add some of these files, please'\
59
 
                           ' add them by name.',
 
58
        self.assertEquals(['If you wish to add ignored files, '
 
59
                           'please add them explicitly by name. '
 
60
                           '("bzr ignored" gives a list)',
60
61
                           'adding .bzrignore',
61
62
                           'adding dir',
62
63
                           'adding dir/sub.txt',
65
66
                          results)
66
67
        out = self.run_bzr('add -v')[0]
67
68
        results = sorted(out.rstrip('\n').split('\n'))
68
 
        self.assertEquals(['If you wish to add some of these files, please'\
69
 
                           ' add them by name.',
 
69
        self.assertEquals(['If you wish to add ignored files, '\
 
70
                           'please add them explicitly by name. ("bzr ignored" gives a list)',
70
71
                           'ignored CVS matching "CVS"'],
71
72
                          results)
72
73