/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_rules.py

  • Committer: Gordon Tyler
  • Date: 2010-01-14 15:24:04 UTC
  • mto: (5037.3.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5046.
  • Revision ID: gordon@doxxx.net-20100114152404-d64ik2afl96lcml0
Reverted changes to test_rules since the original should work now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
            rs.get_selected_items('a.txt', ['foo']))
64
64
 
65
65
    def test_get_items_from_multiple_glob_match(self):
66
 
        text = """[name *.txt *.py 'x x' "y y"]\nfoo=bar\na=True\n"""
67
 
        rs = self.make_searcher(text)
 
66
        rs = self.make_searcher(
 
67
            "[name *.txt *.py 'x x' \"y y\"]\nfoo=bar\na=True\n")
68
68
        self.assertEquals((), rs.get_items('NEWS'))
69
69
        self.assertEquals((('foo', 'bar'), ('a', 'True')),
70
70
            rs.get_items('a.py'))