mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
Tested locally with a python3 extension module (in
/extensions/compiled33).
Also tested that reverting a75773cf9f make
the test fail.
20 lines
466 B
Python
20 lines
466 B
Python
"""
|
|
Test compiled module
|
|
"""
|
|
import os
|
|
import platform
|
|
import sys
|
|
import jedi
|
|
|
|
from .helpers import cwd_at
|
|
|
|
|
|
@cwd_at('extensions')
|
|
def test_compiled():
|
|
if platform.architecture()[0] == '64bit':
|
|
package_name = "compiled%s%s" % sys.version_info[:2]
|
|
sys.path.insert(0, os.getcwd())
|
|
if os.path.exists(package_name):
|
|
s = jedi.Script("from %s import compiled; compiled." % package_name)
|
|
assert len(s.completions()) >= 2
|