summaryrefslogtreecommitdiff
path: root/test/test_ureports_text.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_ureports_text.py')
-rw-r--r--test/test_ureports_text.py41
1 files changed, 21 insertions, 20 deletions
diff --git a/test/test_ureports_text.py b/test/test_ureports_text.py
index dd39dd8..cc602dc 100644
--- a/test/test_ureports_text.py
+++ b/test/test_ureports_text.py
@@ -15,27 +15,28 @@
#
# You should have received a copy of the GNU Lesser General Public License along
# with logilab-common. If not, see <http://www.gnu.org/licenses/>.
-'''unit tests for ureports.text_writer
-'''
+"""unit tests for ureports.text_writer
+"""
from utils import WriterTC
from logilab.common.testlib import TestCase, unittest_main
from logilab.common.ureports.text_writer import TextWriter
+
class TextWriterTC(TestCase, WriterTC):
def setUp(self):
self.writer = TextWriter()
# Section tests ###########################################################
- section_base = '''
+ section_base = """
Section title
=============
Section\'s description.
Blabla bla
-'''
- section_nested = '''
+"""
+ section_nested = """
Section title
=============
Section\'s description.
@@ -46,38 +47,38 @@ Subsection
Sub section description
-'''
+"""
# List tests ##############################################################
- list_base = '''
+ list_base = """
* item1
* item2
* item3
-* item4'''
+* item4"""
- nested_list = '''
+ nested_list = """
* blabla
- 1
- 2
- 3
-* an other point'''
+* an other point"""
# Table tests #############################################################
- table_base = '''
+ table_base = """
+------+------+
|head1 |head2 |
+------+------+
|cell1 |cell2 |
+------+------+
-'''
- field_table = '''
+"""
+ field_table = """
f1 : v1
f22 : v22
f333: v333
-'''
- advanced_table = '''
+"""
+ advanced_table = """
+---------------+------+
|field |value |
+===============+======+
@@ -90,15 +91,15 @@ f333: v333
|`toi perdu ?`_ | |
+---------------+------+
-'''
-
+"""
# VerbatimText tests ######################################################
- verbatim_base = '''::
+ verbatim_base = """::
blablabla
-'''
+"""
+
-if __name__ == '__main__':
+if __name__ == "__main__":
unittest_main()