blob: 91fd845551b66ac9fe9e07712dbb72626721f894 [file] [log] [blame]
Skip Montanaro8c913372002-08-15 01:28:54 +00001#! /usr/bin/env python
2"""test script for a few new invalid token catches"""
3
Skip Montanaro8c913372002-08-15 01:28:54 +00004import unittest
5from test import test_support
6
7class EOFTestCase(unittest.TestCase):
8 def test_EOFC(self):
Alexandre Vassalotti8ae3e052008-05-16 00:41:41 +00009 expect = "EOL while scanning string literal (<string>, line 1)"
Skip Montanaro8c913372002-08-15 01:28:54 +000010 try:
11 eval("""'this is a test\
12 """)
Guido van Rossumb940e112007-01-10 16:19:56 +000013 except SyntaxError as msg:
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000014 self.assertEqual(str(msg), expect)
Skip Montanaro8c913372002-08-15 01:28:54 +000015 else:
16 raise test_support.TestFailed
17
18 def test_EOFS(self):
Alexandre Vassalotti8ae3e052008-05-16 00:41:41 +000019 expect = ("EOF while scanning triple-quoted string literal "
20 "(<string>, line 1)")
Skip Montanaro8c913372002-08-15 01:28:54 +000021 try:
22 eval("""'''this is a test""")
Guido van Rossumb940e112007-01-10 16:19:56 +000023 except SyntaxError as msg:
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000024 self.assertEqual(str(msg), expect)
Skip Montanaro8c913372002-08-15 01:28:54 +000025 else:
26 raise test_support.TestFailed
27
28def test_main():
29 test_support.run_unittest(EOFTestCase)
30
31if __name__ == "__main__":
32 test_main()