Ejemplo n.º 1
0
 def test_unbind(self, Comment):
     comment = Comment("", "")
     comment.bind("ws")
     comment.unbind()
     assert comment.parent is None
Ejemplo n.º 2
0
 def test_bind(self, Comment):
     comment = Comment("", "")
     comment.bind("ws")
     assert comment.parent == "ws"