summaryrefslogtreecommitdiff
path: root/pystache/commands/test.py
blob: 0872453388b43fd3b3f772bf853d455a1bc868cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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()