R-2.0.5
This commit is contained in:
@@ -1 +1 @@
|
|||||||
Version 2.0.5 (2012-08-31 16:15:55) stable
|
Version 2.0.5 (2012-08-31 16:28:37) stable
|
||||||
|
|||||||
@@ -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()
|
||||||
|
|
||||||
Reference in New Issue
Block a user