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