~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ignores.py

  • Committer: John Arbash Meinel
  • Date: 2006-11-10 15:38:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2129.
  • Revision ID: john@arbash-meinel.com-20061110153816-46acf76fc86a512b
use try/finally to clean up a nested progress bar during weave fetching

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
        # Create an empty file
105
105
        ignores._set_user_ignores([])
106
106
 
107
 
        in_patterns = ['foo/', 'bar/', 'baz\\']
 
107
        in_patterns = ['foo/', 'bar/']
108
108
        added = ignores.add_unique_user_ignores(in_patterns)
109
 
        out_patterns = [ x.rstrip('/\\') for x in in_patterns ]
 
109
        out_patterns = [ x.rstrip('/') for x in in_patterns ]
110
110
        self.assertEqual(out_patterns, added)
111
111
        self.assertEqual(set(out_patterns), ignores.get_user_ignores())
112
112
 
113
113
    def test_add_unique(self):
114
114
        """Test that adding will not duplicate ignores"""
115
 
        ignores._set_user_ignores(
116
 
            ['foo', './bar', u'b\xe5z', 'dir1/', 'dir3\\'])
 
115
        ignores._set_user_ignores(['foo', './bar', u'b\xe5z', 'dir1/'])
117
116
 
118
117
        added = ignores.add_unique_user_ignores(
119
 
            ['xxx', './bar', 'xxx', 'dir1/', 'dir2/', 'dir3\\'])
 
118
            ['xxx', './bar', 'xxx', 'dir1/', 'dir2/'])
120
119
        self.assertEqual(['xxx', 'dir2'], added)
121
120
        self.assertEqual(set(['foo', './bar', u'b\xe5z', 
122
 
                              'xxx', 'dir1', 'dir2', 'dir3']),
 
121
                              'xxx', 'dir1', 'dir2']),
123
122
                         ignores.get_user_ignores())
124
123
 
125
124