Diferencia entre revisiones de «Usuario:Lmorillas/intropyaytozgz/nose»
De WikiEducator
Línea 9: | Línea 9: | ||
== Ejemplos == | == Ejemplos == | ||
− | <source | + | |
+ | def test(): | ||
+ | assert False | ||
+ | |||
+ | <source lang="python"> | ||
#testset.py | #testset.py | ||
from nose.tools import ok_, eq_, nottest | from nose.tools import ok_, eq_, nottest |
Revisión de 03:22 11 dic 2012
Tests con python:
|
Ejemplos
def test(): assert False
#testset.py from nose.tools import ok_, eq_, nottest def test_sum(): eq_(2+2,4) @nottest # este test no empieza por test_ def test_failing_sum(): ok_(2+2 == 3, "Expected failure")