You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
359 B
16 lines
359 B
from clang.cindex import *
|
|
import os
|
|
|
|
kInputsDir = os.path.join(os.path.dirname(__file__), 'INPUTS')
|
|
|
|
def test_create():
|
|
index = Index.create()
|
|
|
|
# FIXME: test Index.read
|
|
|
|
def test_parse():
|
|
index = Index.create()
|
|
assert isinstance(index, Index)
|
|
tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
|
|
assert isinstance(tu, TranslationUnit)
|