Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
llvmlite / tests / test_llvmpy.py
Size: Mime:
"""
Tests for legacy llvmpy-compatibility APIs.
"""

from __future__ import print_function, absolute_import

from . import TestCase


class TestMisc(TestCase):

    def test_imports(self):
        """
        Sanity-check llvmpy APIs import correctly.
        """
        from llvmlite.llvmpy.core import Constant, Type, Builder
        from llvmlite.llvmpy.passes import create_pass_manager_builder


if __name__ == '__main__':
    unittest.main()