Exemplo n.º 1
0
 def test_set_title(self):
     s = Section('== section ==\ntext.')
     s.title = ' newtitle '
     self.assertEqual(' newtitle ', s.title)
Exemplo n.º 2
0
 def test_lead_set_title(self):
     s = Section('lead text')
     s.title = ' newtitle '
Exemplo n.º 3
0
def test_set_title():
    s = Section('== section ==\ntext.')
    s.title = ' newtitle '
    assert ' newtitle ' == s.title