13 lines
220 B
Python
13 lines
220 B
Python
"""Unit tests SDL2.
|
|
|
|
This package contains the unit tests for SDL2. You can execute the
|
|
unit tests using
|
|
|
|
python -c "import sdl.test; sdl.test.run()"
|
|
|
|
"""
|
|
import sys
|
|
from .util.runtests import run
|
|
|
|
__all__ = ["run"]
|