Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
import
unittest
class
Pruebas
(
unittest
.
TestCase
)
:
def
mensaje
(
self
)
:
return
13
def
test_resultado
(
self
)
:
self
.
assertEqual
(
self
.
mensaje
(
)
,
13
)
if
__name__
==
'__main__'
:
unittest
.
main
(
)