From e4b6fba5ca16eb63b445daff2c1b0cb91cf2487f Mon Sep 17 00:00:00 2001 From: mdipierro Date: Fri, 31 Aug 2012 16:28:40 -0500 Subject: [PATCH] R-2.0.5 --- VERSION | 2 +- gluon/tests/test_markmin.py | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 gluon/tests/test_markmin.py diff --git a/VERSION b/VERSION index 7d48608e..dd5e32de 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.0.5 (2012-08-31 16:15:55) stable +Version 2.0.5 (2012-08-31 16:28:37) stable diff --git a/gluon/tests/test_markmin.py b/gluon/tests/test_markmin.py new file mode 100644 index 00000000..a300d3ed --- /dev/null +++ b/gluon/tests/test_markmin.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" + Unit tests for running web2py +""" +import sys +import os +if os.path.isdir('gluon'): + sys.path.append(os.path.realpath('gluon')) +else: + sys.path.append(os.path.realpath('../')) + +import unittest +from gluon.contrib.markmin.markmin2html import run_doctests + +class TestMarkmin(unittest.TestCase): + def testMarkmin(self): + run_doctests() + +if __name__ == '__main__': + unittest.main() +