mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 13:23:23 +08:00
11 lines
222 B
Python
11 lines
222 B
Python
import pytest
|
|
from importlib import import_module
|
|
|
|
def test_config_import():
|
|
mod = import_module('config')
|
|
assert mod is not None
|
|
|
|
def test_main_import():
|
|
mod = import_module('main')
|
|
assert mod is not None
|