Skip to content

Commit

Permalink
hooking old doctests into unittests, thanks Niphlod
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Apr 15, 2013
1 parent 44eb880 commit 7341988
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version 2.4.6-stable+timestamp.2013.04.15.15.58.57
Version 2.4.6-stable+timestamp.2013.04.15.17.18.31
33 changes: 33 additions & 0 deletions gluon/tests/test_old_doctests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

""" Unit tests for old doctests in validators.py, utf8.py, html.py.
Don't abuse doctests, web2py > 2.4.5 will accept only unittests
"""
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
import doctest

def load_tests(loader, tests, ignore):

tests.addTests(
doctest.DocTestSuite('validators',
optionflags=doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS,
)
)
tests.addTests(
doctest.DocTestSuite('html')
)
tests.addTests(
doctest.DocTestSuite('utf8')
)
return tests

if __name__ == '__main__':
unittest.main()

0 comments on commit 7341988

Please sign in to comment.