Ejemplo n.º 1
0
 def test_can_create_spacers(self):
     self.assertIsInstance(element('spacer[0|5]'), platypus.Spacer)
Ejemplo n.º 2
0
 def test_can_create_paragraphs(self):
     self.assertIsInstance(element('paragraph[Paragraph text]'), flowables.Paragraph)
Ejemplo n.º 3
0
 def test_can_create_images(self):
     self.assertIsInstance(element('image[%s|%s]' % (self.logo, 20)), platypus.Image)
Ejemplo n.º 4
0
 def test_can_create_frame_breaks(self):
     self.assertIsInstance(element('framebreak'), platypus.doctemplate._FrameBreak)
Ejemplo n.º 5
0
 def test_can_create_simple_line_flowables(self):
     self.assertIsInstance(element('simpleline[185|0.1]',), flowables.SimpleLine)
Ejemplo n.º 6
0
 def test_can_create_spacers(self):
     self.assertIsInstance(element('spacer[0|5]'), platypus.Spacer)
Ejemplo n.º 7
0
 def test_can_create_images(self):
     self.assertIsInstance(element('image[%s|%s]' % (self.logo, 20)),
                           platypus.Image)
Ejemplo n.º 8
0
 def test_can_create_paragraphs(self):
     self.assertIsInstance(element('paragraph[Paragraph text]'),
                           flowables.Paragraph)
Ejemplo n.º 9
0
 def test_can_create_simple_line_flowables(self):
     self.assertIsInstance(element('simpleline[185|0.1]', ),
                           flowables.SimpleLine)
Ejemplo n.º 10
0
 def test_can_create_frame_breaks(self):
     self.assertIsInstance(element('framebreak'),
                           platypus.doctemplate._FrameBreak)