Exemplo n.º 1
0
 def test_containter_return_themselfs_if_string_added(self):
     div = HtmlDiv()
     return_value = div.add('abc')
     assert div == return_value
Exemplo n.º 2
0
 def test_indents(self):
     div = HtmlDiv()
     div2 = HtmlDiv()
     div.add(div2)
Exemplo n.º 3
0
 def test_containter_return_added_objects(self):
     div = HtmlDiv()
     cell = HtmlCell()
     return_value = div.add(cell)
     assert cell == return_value