Exemplo n.º 1
0
 def testIndentedConditionalComment(self):
   self.assertEqual(str(body(p(), comment(p(), condition='lt IE 7'))), '<body>\n\t<p></p>\n\t<!--[if lt IE 7]>\n\t<p></p>\n\t<![endif]-->\n</body>')
Exemplo n.º 2
0
 def testCommentWithTags(self):
   self.assertEqual(str(body(p(), comment(p()))), '<body>\n\t<p></p>\n\t<!--\n\t<p></p>\n\t-->\n</body>')
Exemplo n.º 3
0
 def testConditionalComment(self):
   self.assertEqual(str(comment(p(), condition='lt IE 7')), '<!--[if lt IE 7]>\n<p></p>\n<![endif]-->')
Exemplo n.º 4
0
 def testComment(self):
   self.assertEqual(str(comment('test')), '<!--test-->')
Exemplo n.º 5
0
 def testIndentedConditionalComment(self):
     self.assertEqual(
         str(body(p(), comment(p(), condition='lt IE 7'))),
         '<body>\n\t<p></p>\n\t<!--[if lt IE 7]>\n\t<p></p>\n\t<![endif]-->\n</body>'
     )
Exemplo n.º 6
0
 def testConditionalComment(self):
     self.assertEqual(str(comment(p(), condition='lt IE 7')),
                      '<!--[if lt IE 7]>\n<p></p>\n<![endif]-->')
Exemplo n.º 7
0
 def testCommentWithTags(self):
     self.assertEqual(
         str(body(p(), comment(p()))),
         '<body>\n\t<p></p>\n\t<!--\n\t<p></p>\n\t-->\n</body>')
Exemplo n.º 8
0
 def testComment(self):
     self.assertEqual(str(comment('test')), '<!--test-->')