mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 19:30:29 -05:00
15 lines
359 B
Python
15 lines
359 B
Python
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)
|