Added tests for Bug #850931.

This commit is contained in:
Jeremy Fincher 2003-11-29 18:57:47 +00:00
parent 72f93610b1
commit 068003cb52
1 changed files with 4 additions and 0 deletions

View File

@ -79,4 +79,8 @@ class UtilitiesTestCase(PluginTestCase, PluginDocumentation):
def testReNoEscapingUnpackListOfWrongSize(self):
self.assertNotRegexp('re foo bar baz', 'unpack list of wrong size')
def testReBug850931(self):
self.assertResponse('re s/\b(\w+)\b/\1./g foo bar baz',
'foo. bar. baz.')
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: