Files
computer/libs/python/som/tests/test_omniparser.py

14 lines
413 B
Python

# """Basic tests for the omniparser package."""
# import pytest
# from omniparser import IconDetector
# def test_icon_detector_import():
# """Test that we can import the IconDetector class."""
# assert IconDetector is not None
# def test_icon_detector_init():
# """Test that we can create an IconDetector instance."""
# detector = IconDetector(force_cpu=True)
# assert detector is not None