/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_lazy_regex.py

  • Committer: Martin Pool
  • Date: 2011-06-28 22:39:41 UTC
  • mto: This revision was merged to the branch mainline in revision 6004.
  • Revision ID: mbp@canonical.com-20110628223941-rnxnukj963t1goft
lazy regexp tests should install it explicitly

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    """
126
126
 
127
127
    def test_install(self):
 
128
        # Don't count on it being present
 
129
        lazy_regex.install_lazy_compile()
128
130
        pattern = re.compile('foo')
129
131
        self.assertIsInstance(pattern, lazy_regex.LazyRegex)
130
132