From 068003cb52599bb810195487083605fe37719f22 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 29 Nov 2003 18:57:47 +0000 Subject: [PATCH] Added tests for Bug #850931. --- test/test_Utilities.py | 4 ++++ 1 file changed, 4 insertions(+) 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: