From fec4597db9d3ae6dd941e71c593e3203ebdc5580 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Sat, 21 Apr 2012 14:13:53 -0700 Subject: Added test_pystache.py for Python 2.4. --- test_pystache.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test_pystache.py (limited to 'test_pystache.py') diff --git a/test_pystache.py b/test_pystache.py new file mode 100644 index 0000000..0f997e5 --- /dev/null +++ b/test_pystache.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python +# coding: utf-8 + +""" +Runs project tests. + +This script is a substitute for running-- + + python -m pystache.commands.test + +It is useful in Python 2.4 because the -m flag does not accept subpackages +in Python 2.4: + + http://docs.python.org/using/cmdline.html#cmdoption-m + +""" + +from pystache.commands.test import main + +if __name__=='__main__': + main() -- cgit v1.2.1