hy/tests/__init__.py

26 lines
1004 B
Python
Raw Normal View History

2013-03-10 03:01:59 +01:00
import hy # noqa
from hy._compat import PY3
from .native_tests.cons import * # noqa
from .native_tests.defclass import * # noqa
from .native_tests.mathematics import * # noqa
2013-05-11 19:59:19 +02:00
from .native_tests.native_macros import * # noqa
2013-05-10 23:42:13 +02:00
from .native_tests.quote import * # noqa
from .native_tests.language import * # noqa
from .native_tests.unless import * # noqa
from .native_tests.when import * # noqa
from .native_tests.with_decorator import * # noqa
from .native_tests.core import * # noqa
from .native_tests.sharp_macros import * # noqa
from .native_tests.operators import * # noqa
from .native_tests.with_test import * # noqa
from .native_tests.extra.anaphoric import * # noqa
from .native_tests.contrib.loop import * # noqa
from .native_tests.contrib.walk import * # noqa
2013-12-30 14:32:36 +01:00
from .native_tests.contrib.multi import * # noqa
2016-11-08 05:28:12 +01:00
from .native_tests.contrib.sequences import * # noqa
2017-03-20 20:04:00 +01:00
from .native_tests.contrib.hy_repr import * # noqa
if PY3:
from .native_tests.py3_only_tests import * # noqa