From 5b301d551b3cd0add34048bd40c8c88718b02f0e Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 30 Mar 2012 09:50:10 -0400 Subject: remove this test per ben's request --- test/test_ast.py | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'test/test_ast.py') diff --git a/test/test_ast.py b/test/test_ast.py index 60ad6ec..c9c400e 100644 --- a/test/test_ast.py +++ b/test/test_ast.py @@ -189,21 +189,7 @@ def x(q): eq_(parsed.declared_identifiers, set(['x'])) eq_(parsed.undeclared_identifiers, set()) - def test_locate_identifiers_12(self): - code = """ -class ContextManager(object): - def __enter__(self): - return 1 - def __exit__(self, exc_type, exc_value, traceback): - pass -with ContextManager() as x, ContextManager(): - print x -""" - parsed = ast.PythonCode(code, **exception_kwargs) - eq_(parsed.declared_identifiers, set(['ContextManager', 'x'])) - eq_(parsed.undeclared_identifiers, set()) - def test_no_global_imports(self): code = """ -- cgit v1.2.3