Revonzy Mini Shell

Şuanki Dizin: /lib64/python2.7/site-packages/Cheetah/Tests/
Dosya Yükle :
Şuanki Dosya : //lib64/python2.7/site-packages/Cheetah/Tests/Cheps.py

import unittest

import Cheetah
import Cheetah.Parser
import Cheetah.Template

class Chep_2_Conditionalized_Import_Behavior(unittest.TestCase):
    def test_ModuleLevelImport(self):
        ''' Verify module level (traditional) import behavior '''
        pass

    def test_InlineImport(self):
        ''' Verify (new) inline import behavior works '''
        template = '''
            #def funky($s)
                #try
                    #import urllib
                #except ImportError
                    #pass
                #end try
                #return urllib.quote($s)
            #end def
        '''
        try:
            template = Cheetah.Template.Template.compile(template)
        except Cheetah.Parser.ParseError, ex:
            self.fail('Failed to properly generate code %s' % ex)
        template = template()
        rc = tepmlate.funky('abc def')
        assert rc == 'abc+def'

    def test_LegacyMode(self):
        ''' Verify disabling of CHEP #2 works '''
        pass

if __name__ == '__main__':
    unittest.main()

EliteHackz.ORG
Revonzy Mini Shell
root@revonzy.com

Linux vps.suncrosonline.com 3.10.0-862.3.2.el7.x86_64 #1 SMP Mon May 21 23:36:36 UTC 2018 x86_64
Apache
162.241.69.42