mirror of
https://github.com/NinjaCheetah/libWiiPy.git
synced 2025-04-25 12:51:01 -04:00
13 lines
274 B
Python
13 lines
274 B
Python
# "__init__.py" from libWiiPy by NinjaCheetah & Contributors
|
|
# https://github.com/NinjaCheetah/libWiiPy
|
|
#
|
|
# Complete set of tests to be run.
|
|
|
|
import unittest
|
|
|
|
from .title.commonkeys_test import *
|
|
from .title.nus_test import *
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|