blob: 909cda51837cad3bbf574a62593bb8211bb6c47d [file] [log] [blame]
Michael W. Hudson3f061892004-07-12 13:15:56 +00001import unittest
2from test import test_support
3from compiler import transformer, ast
4from compiler import compile
5
6class Tests(unittest.TestCase):
Michael W. Hudson3f061892004-07-12 13:15:56 +00007
Tim Peters182b5ac2004-07-18 06:16:08 +00008 def testMultipleLHS(self):
9 """ Test multiple targets on the left hand side. """
10
11 snippets = ['a, b = 1, 2',
12 '(a, b) = 1, 2',
13 '((a, b), c) = (1, 2), 3']
14
15 for s in snippets:
16 a = transformer.parse(s)
17 assert isinstance(a, ast.Module)
18 child1 = a.getChildNodes()[0]
19 assert isinstance(child1, ast.Stmt)
20 child2 = child1.getChildNodes()[0]
21 assert isinstance(child2, ast.Assign)
22
23 # This actually tests the compiler, but it's a way to assure the ast
24 # is correct
25 c = compile(s, '<string>', 'single')
26 vals = {}
27 exec c in vals
28 assert vals['a'] == 1
29 assert vals['b'] == 2
Michael W. Hudson3f061892004-07-12 13:15:56 +000030
31def test_main():
Jeremy Hylton566d9342004-09-07 15:28:01 +000032 test_support.run_unittest(Tests)
Michael W. Hudson3f061892004-07-12 13:15:56 +000033
34if __name__ == "__main__":
35 test_main()