2013-03-09 21:01:59 -05:00
|
|
|
|
2013-04-06 21:22:35 +02:00
|
|
|
import hy # noqa
|
2014-05-01 16:31:45 -04:00
|
|
|
from hy._compat import PY3
|
2013-05-16 18:59:20 +02:00
|
|
|
from .native_tests.cons import * # noqa
|
2013-04-24 22:18:05 +02:00
|
|
|
from .native_tests.defclass import * # noqa
|
2014-04-30 10:38:07 -05:00
|
|
|
from .native_tests.mathematics import * # noqa
|
2013-05-11 13:59:19 -04:00
|
|
|
from .native_tests.native_macros import * # noqa
|
2013-05-10 23:42:13 +02:00
|
|
|
from .native_tests.quote import * # noqa
|
2013-04-06 21:22:35 +02:00
|
|
|
from .native_tests.language import * # noqa
|
2013-04-28 17:02:08 +02:00
|
|
|
from .native_tests.unless import * # noqa
|
2013-04-28 16:57:29 +02:00
|
|
|
from .native_tests.when import * # noqa
|
2013-04-28 17:14:22 +02:00
|
|
|
from .native_tests.with_decorator import * # noqa
|
2013-07-07 20:36:26 -06:00
|
|
|
from .native_tests.core import * # noqa
|
2013-12-15 17:47:24 +01:00
|
|
|
from .native_tests.reader_macros import * # noqa
|
2014-08-26 21:38:52 +12:00
|
|
|
from .native_tests.shadow import * # noqa
|
2013-11-10 19:00:01 +01:00
|
|
|
from .native_tests.with_test import * # noqa
|
2016-12-26 14:44:59 -08:00
|
|
|
from .native_tests.extra.anaphoric import * # noqa
|
2014-01-08 22:54:49 -05:00
|
|
|
from .native_tests.contrib.loop import * # noqa
|
2014-01-26 03:53:44 +01:00
|
|
|
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 06:28:12 +02:00
|
|
|
from .native_tests.contrib.sequences import * # noqa
|
2017-03-20 12:04:00 -07:00
|
|
|
from .native_tests.contrib.hy_repr import * # noqa
|
2014-05-01 16:31:45 -04:00
|
|
|
|
|
|
|
if PY3:
|
|
|
|
from .native_tests.py3_only_tests import * # noqa
|