~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_status.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-20 12:19:29 UTC
  • mfrom: (6437.23.11 2.5)
  • mto: (6581.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6582.
  • Revision ID: jelmer@samba.org-20120220121929-7ni2psvjoatm1yp4
Merge bzr/2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
        params = calls[0]
170
170
        self.assertIsInstance(params, _mod_status.StatusHookParams)
171
171
        attrs = ['old_tree', 'new_tree', 'to_file', 'versioned',
172
 
            'show_ids', 'short', 'verbose']
 
172
            'show_ids', 'short', 'verbose', 'specific_files']
173
173
        for a in attrs:
174
174
            self.assertTrue(hasattr(params, a),
175
175
                'Attribute "%s" not found in StatusHookParam' % a)
192
192
        params = calls[0]
193
193
        self.assertIsInstance(params, _mod_status.StatusHookParams)
194
194
        attrs = ['old_tree', 'new_tree', 'to_file', 'versioned',
195
 
            'show_ids', 'short', 'verbose']
 
195
            'show_ids', 'short', 'verbose', 'specific_files']
196
196
        for a in attrs:
197
197
            self.assertTrue(hasattr(params, a),
198
198
                'Attribute "%s" not found in StatusHookParam' % a)