예제 #1
0
def test_rot13():

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