Example #1
0
 def test_content(self):
     script = Script(content='function test(){return "<>"};')
     result = script.tostring()
     self.assertEqual(result, '<script><![CDATA[function test(){return "<>"};]]></script>')
Example #2
0
 def test_type(self):
     script = Script('test.py', type='application/python')
     self.assertEqual(script.tostring(), '<script type="application/python" xlink:href="test.py" />')
Example #3
0
 def test_link(self):
     script = Script('test.js')
     self.assertEqual(script.tostring(), '<script xlink:href="test.js" />')
Example #4
0
 def test_content(self):
     script = Script(content='function test(){return "<>"};')
     result = script.tostring()
     self.assertEqual(
         result,
         '<script><![CDATA[function test(){return "<>"};]]></script>')
Example #5
0
 def test_type(self):
     script = Script('test.py', type='application/python')
     self.assertEqual(
         script.tostring(),
         '<script type="application/python" xlink:href="test.py" />')
Example #6
0
 def test_link(self):
     script = Script('test.js')
     self.assertEqual(script.tostring(), '<script xlink:href="test.js" />')