diff options
author | Martin Vilcans <martin@librador.com> | 2013-08-13 18:51:32 +0200 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2013-08-13 18:51:32 +0200 |
commit | df008aca56897bbb96272a730fe259d0e9b98996 (patch) | |
tree | 6ef9194a5f39ad160240283484c4e573aebecdce | |
parent | 121dd5374458b38b2ab2a7e2acf30f5256a8d251 (diff) | |
download | screenplain-df008aca56897bbb96272a730fe259d0e9b98996.tar.gz |
Use unittest2 if available but don't require it.
The features of unittest2 are already in Python >=2.7.
-rw-r--r-- | requirements.txt | 1 | ||||
-rw-r--r-- | tests/fdx_test.py | 2 | ||||
-rw-r--r-- | tests/files_test.py | 2 | ||||
-rw-r--r-- | tests/fountain_test.py | 3 | ||||
-rw-r--r-- | tests/richstring_test.py | 2 | ||||
-rw-r--r-- | tests/testcompat.py | 17 |
6 files changed, 23 insertions, 4 deletions
diff --git a/requirements.txt b/requirements.txt index 3fb0cff..3d09f64 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ #reportlab +unittest2 nose pep8 diff --git a/tests/fdx_test.py b/tests/fdx_test.py index 8034f71..b6e2bc9 100644 --- a/tests/fdx_test.py +++ b/tests/fdx_test.py @@ -2,7 +2,7 @@ # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license.php -from unittest import TestCase +from testcompat import TestCase from StringIO import StringIO from screenplain.export.fdx import write_text diff --git a/tests/files_test.py b/tests/files_test.py index dc799bc..b5a390c 100644 --- a/tests/files_test.py +++ b/tests/files_test.py @@ -4,7 +4,7 @@ from __future__ import with_statement -from unittest import TestCase +from testcompat import TestCase import tempfile import os import os.path diff --git a/tests/fountain_test.py b/tests/fountain_test.py index 5095e4e..e265da9 100644 --- a/tests/fountain_test.py +++ b/tests/fountain_test.py @@ -2,7 +2,8 @@ # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license.php -from unittest import TestCase +from testcompat import TestCase + from screenplain.parsers import fountain from screenplain.types import ( Slug, Action, Dialog, DualDialog, Transition, Section, PageBreak diff --git a/tests/richstring_test.py b/tests/richstring_test.py index b9ca3d2..f2bed5e 100644 --- a/tests/richstring_test.py +++ b/tests/richstring_test.py @@ -2,7 +2,7 @@ # Licensed under the MIT license: # http://www.opensource.org/licenses/mit-license.php -from unittest import TestCase +from testcompat import TestCase from screenplain.richstring import ( RichString, Segment, Bold, Italic, diff --git a/tests/testcompat.py b/tests/testcompat.py new file mode 100644 index 0000000..e0d0cba --- /dev/null +++ b/tests/testcompat.py @@ -0,0 +1,17 @@ +# Copyright (c) 2011 Martin Vilcans +# Licensed under the MIT license: +# http://www.opensource.org/licenses/mit-license.php + +"""Provides compatibility between Python 2 and 3. + +In Python 2 we use the unittest2 module. +The functionality of that module is already in Python 3, +so we don't depend on it. +This module exports the TestCase class from whatever unittest library we have. + +""" + +try: + from unittest2 import TestCase +except ImportError: + from unittest import TestCase |