mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-24 07:53:30 +08:00
22 lines
532 B
Python
22 lines
532 B
Python
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
"""Testing asset manager functionality."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from batools import testrun
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
testrun.test_runs_disabled(), reason=testrun.test_runs_disabled_reason()
|
|
)
|
|
def test_imports() -> None:
|
|
"""Test imports for our featureset."""
|
|
|
|
# Make sure our package and binary module can be cleanly imported by
|
|
# themselves.
|
|
testrun.run_command('import baplus')
|
|
testrun.run_command('import _baplus')
|