Exemplo n.º 1
0
    def test_3(self):
        self.folder.laf.write(util.read_input('teeshoplaf.html'))

        t = self.folder.t
        t.write(util.read_input('teeshop1.html'))
        expect = util.read_output('teeshop1.html')
        out = t(laf=self.folder.laf, getProducts=self.getProducts)
        util.check_html(expect, out)
Exemplo n.º 2
0
 def test_ReplaceWithNothing(self):
     t = self.folder.t
     t.write(util.read_input('checknothing.html'))
     expect = util.read_output('checknothing.html')
     out = t()
     util.check_html(expect, out)
Exemplo n.º 3
0
 def test_StringExpressions(self):
     t = self.folder.t
     t.write(util.read_input('stringexpression.html'))
     expect = util.read_output('stringexpression.html')
     out = t()
     util.check_html(expect, out)
Exemplo n.º 4
0
 def test_GlobalsShadowLocals(self):
     t = self.folder.t
     t.write(util.read_input('globalsshadowlocals.html'))
     expect = util.read_output('globalsshadowlocals.html')
     out = t()
     util.check_html(expect, out)
Exemplo n.º 5
0
 def test_SimpleLoop(self):
     t = self.folder.t
     t.write(util.read_input('loop1.html'))
     expect = util.read_output('loop1.html')
     out = t()
     util.check_html(expect, out)
Exemplo n.º 6
0
 def test_1(self):
     laf = self.folder.laf
     laf.write(util.read_input('teeshoplaf.html'))
     expect = util.read_output('teeshoplaf.html')
     util.check_html(expect, laf())
Exemplo n.º 7
0
 def test_PathAlt(self):
     t = self.folder.t
     t.write(util.read_input('checkpathalt.html'))
     expect = util.read_output('checkpathalt.html')
     out = t()
     util.check_html(expect, out)
Exemplo n.º 8
0
 def test_NotExpression(self):
     t = self.folder.t
     t.write(util.read_input('checknotexpression.html'))
     expect = util.read_output('checknotexpression.html')
     out = t()
     util.check_html(expect, out)
Exemplo n.º 9
0
 def test_WithXMLHeader(self):
     t = self.folder.t
     t.write(util.read_input('checkwithxmlheader.html'))
     expect = util.read_output('checkwithxmlheader.html')
     out = t()
     util.check_html(expect, out)