From 5b4173912f315df41a6202565a3739281a7d6ba0 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Sun, 26 Feb 2012 21:56:32 +0000 Subject: [PATCH] [clang.py] Test Cursor.__ne__ llvm-svn: 151504 --- clang/bindings/python/tests/cindex/test_cursor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/bindings/python/tests/cindex/test_cursor.py b/clang/bindings/python/tests/cindex/test_cursor.py index 71ee0c5763ea..d58ca95b7e1c 100644 --- a/clang/bindings/python/tests/cindex/test_cursor.py +++ b/clang/bindings/python/tests/cindex/test_cursor.py @@ -36,6 +36,7 @@ def test_get_children(): assert len(tu_nodes) == 3 + assert tu_nodes[0] != tu_nodes[1] assert tu_nodes[0].kind == CursorKind.STRUCT_DECL assert tu_nodes[0].spelling == 's0' assert tu_nodes[0].is_definition() == True