2 from clang
.cindex
import Config
4 if "CLANG_LIBRARY_PATH" in os
.environ
:
5 Config
.set_library_path(os
.environ
["CLANG_LIBRARY_PATH"])
7 from clang
.cindex
import Index
, File
12 class TestFile(unittest
.TestCase
):
14 index
= Index
.create()
15 tu
= index
.parse("t.c", unsaved_files
=[("t.c", "")])
16 file = File
.from_name(tu
, "t.c")
17 self
.assertEqual(str(file), "t.c")
18 self
.assertEqual(file.name
, "t.c")
19 self
.assertEqual(repr(file), "<File: t.c>")