[ZPT] CVS: Zope3/lib/python/Zope/TAL/tests - test_htmltalparser.py:1.25.14.2.6.4

Fred L. Drake, Jr. fdrake@acm.org
Wed, 5 Jun 2002 13:30:08 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/TAL/tests
In directory cvs.zope.org:/tmp/cvs-serv6745

Modified Files:
      Tag: fdrake-tal-i18n-branch
	test_htmltalparser.py 
Log Message:
Added missing scope opcodes to expected "bytecode".


=== Zope3/lib/python/Zope/TAL/tests/test_htmltalparser.py 1.25.14.2.6.3 => 1.25.14.2.6.4 ===
         self._run_check("<img alt='foo' i18n:attributes='alt'>", [
             ('setPosition', (1, 0)),
+            ('beginScope', {'alt': 'foo', 'i18n:attributes': 'alt'}),
             ('startTag', ('img',
              [('alt', 'foo', 'replace', None, 1),
               ('i18n:attributes', 'alt', 'i18n')])),
+            ('endScope', ()),
             ])