|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21585/root/usr/lib64/python2.4/test/ |
Upload File : |
#! /usr/bin/env python2.4
"""test script for a few new invalid token catches"""
import os
import unittest
from test import test_support
class EOFTestCase(unittest.TestCase):
def test_EOFC(self):
try:
eval("""'this is a test\
""")
except SyntaxError, msg:
self.assertEqual(str(msg),
"EOL while scanning single-quoted string (line 1)")
else:
raise test_support.TestFailed
def test_EOFS(self):
try:
eval("""'''this is a test""")
except SyntaxError, msg:
self.assertEqual(str(msg),
"EOF while scanning triple-quoted string (line 1)")
else:
raise test_support.TestFailed
def test_main():
test_support.run_unittest(EOFTestCase)
if __name__ == "__main__":
test_main()