Ejemplo n.º 1
0
def test_rot13():

    assert_equal("uryyb", rot13("hello"))
def test_rot13():
        assert "sverzna fnz" == rot13("fireman sam"), "Unexpected line"
Ejemplo n.º 3
0
def test_rot13_str_hello():
    assert_equal('uryyb', rot13('hello'))
Ejemplo n.º 4
0
def test_rot13_abcdef():
    assert "abcdef" == rot13("nopqrs"), "Unexpected character"
def test_rot13_char_n():
	assert "n" == rot13("a"), "Unexpected character"
Ejemplo n.º 6
0
def test_hi():
    assert_equal("uv", rot13("hi"))
Ejemplo n.º 7
0
def test_rot13_rot13():
    assert_equal("ebg13", rot13("rot13"))
Ejemplo n.º 8
0
def test_rot13_hello():
    assert "uryyb" == rot13("hello"), "Unexpected string"
Ejemplo n.º 9
0
def test_function_name2():
    assert "pynved" != rot13("claire"), "Unexpected character"
Ejemplo n.º 10
0
def test_function_name1():
    assert "raevdhr" == rot13("enrique"), "Unexpected character"
Ejemplo n.º 11
0
def test_rot13_hello():
    assert "uryyb" == rot13("hello"), "Unexpected result"
Ejemplo n.º 12
0
def test_rot13_hello():
    assert "uryyb" == rot13("hello"), "Unexpected character"