############################################################################## # # Copyright (c) 2004 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Tests for zope.tal.talparser. $Id: test_talparser.py 30139 2005-04-24 07:01:43Z hdima $ """ import unittest from zope.tal import talparser class TALParserTestCase(unittest.TestCase): def test_parser_returns_macros(self): parser = talparser.TALParser() parser.parseString( "\n" "\n" " \n" " some text\n" " \n" "") bytecode, macros = parser.getCode() self.assertEqual(macros.keys(), ["MACRO"]) def test_suite(): return unittest.makeSuite(TALParserTestCase)