diff options
author | Martin Vilcans <martin@librador.com> | 2014-03-11 00:09:19 +0100 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2014-03-11 00:09:19 +0100 |
commit | 9c2e3683e207e81cf88350fde2dfadcecd5cc914 (patch) | |
tree | b9ebee2cc9739f8c6ea02ee84a4d7e76e25d0f7b /test.py | |
parent | 436c6c702bedbce65936fb0d8eab09053015de61 (diff) | |
download | screenplain-9c2e3683e207e81cf88350fde2dfadcecd5cc914.tar.gz |
Patch doctests to work with Python 3
Diffstat (limited to 'test.py')
-rw-r--r-- | test.py | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +"""Runs nosetest after preparing the test cases. + +Removes the leading u from unicode literals so +Python 3 doctests won't fail. + +""" + +from screenplain import richstring +import re + +unicode_literal = re.compile(r'u([\'"])') + +for n in ( + 'parse_emphasis', + '_unescape', + '_demagic_literals', +): + attr = getattr(richstring, n) + old_doc = getattr(attr, '__doc__') + new_doc = unicode_literal.sub(r'\1', old_doc) + setattr(attr, '__doc__', new_doc) + +import nose +nose.main(argv='nosetests --nocapture --with-doctest --doctest-tests'.split()) |