mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 04:43:07 +09:00
18 lines
268 B
Python
18 lines
268 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
This module provides a command to test pystache (unit tests, doctests, etc).
|
|
|
|
"""
|
|
|
|
import sys
|
|
|
|
from pystache.tests.main import main as run_tests
|
|
|
|
|
|
def main(sys_argv=sys.argv):
|
|
run_tests(sys_argv=sys_argv)
|
|
|
|
|
|
if __name__=='__main__':
|
|
main()
|