Testing con python
De WikiEducator
< Usuario:Lmorillas | intropyaytozgz
Revisión a fecha de 03:22 11 dic 2012; Lmorillas (Discusión | contribuciones)
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")