コード例 #1
0
ファイル: tests_unit.py プロジェクト: initios/factura-pdf
 def test_can_create_spacers(self):
     self.assertIsInstance(element('spacer[0|5]'), platypus.Spacer)
コード例 #2
0
ファイル: tests_unit.py プロジェクト: initios/factura-pdf
 def test_can_create_paragraphs(self):
     self.assertIsInstance(element('paragraph[Paragraph text]'), flowables.Paragraph)
コード例 #3
0
ファイル: tests_unit.py プロジェクト: initios/factura-pdf
 def test_can_create_images(self):
     self.assertIsInstance(element('image[%s|%s]' % (self.logo, 20)), platypus.Image)
コード例 #4
0
ファイル: tests_unit.py プロジェクト: initios/factura-pdf
 def test_can_create_frame_breaks(self):
     self.assertIsInstance(element('framebreak'), platypus.doctemplate._FrameBreak)
コード例 #5
0
ファイル: tests_unit.py プロジェクト: initios/factura-pdf
 def test_can_create_simple_line_flowables(self):
     self.assertIsInstance(element('simpleline[185|0.1]',), flowables.SimpleLine)
コード例 #6
0
 def test_can_create_spacers(self):
     self.assertIsInstance(element('spacer[0|5]'), platypus.Spacer)
コード例 #7
0
 def test_can_create_images(self):
     self.assertIsInstance(element('image[%s|%s]' % (self.logo, 20)),
                           platypus.Image)
コード例 #8
0
 def test_can_create_paragraphs(self):
     self.assertIsInstance(element('paragraph[Paragraph text]'),
                           flowables.Paragraph)
コード例 #9
0
 def test_can_create_simple_line_flowables(self):
     self.assertIsInstance(element('simpleline[185|0.1]', ),
                           flowables.SimpleLine)
コード例 #10
0
 def test_can_create_frame_breaks(self):
     self.assertIsInstance(element('framebreak'),
                           platypus.doctemplate._FrameBreak)