diff --git a/test/test_Utilities.py b/test/test_Utilities.py index f2c67b9ef..421407503 100644 --- a/test/test_Utilities.py +++ b/test/test_Utilities.py @@ -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: