[pywin32-checkins] pywin32/com/win32com/test testvbscript_regexp.py,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-31 13:57:23
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory sc8-pr-cvs1:/tmp/cvs-serv16273 Modified Files: testvbscript_regexp.py Log Message: Oops - make the test actually do something! Index: testvbscript_regexp.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testvbscript_regexp.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** testvbscript_regexp.py 31 Oct 2003 13:52:24 -0000 1.1 --- testvbscript_regexp.py 31 Oct 2003 13:57:18 -0000 1.2 *************** *** 26,34 **** def testDynamic(self): ! re = EnsureDispatch("VBScript.Regexp") self._TestVBScriptRegex(re) ! def testDynamic(self): ! re = DumbDispatch("VBScript.Regexp") self._TestVBScriptRegex(re) --- 26,34 ---- def testDynamic(self): ! re = DumbDispatch("VBScript.Regexp") self._TestVBScriptRegex(re) ! def testGenerated(self): ! re = EnsureDispatch("VBScript.Regexp") self._TestVBScriptRegex(re) |