Exemplo n.º 1
0
def test_hello():
    assert hello('hello') == 'hello, world!\n'
Exemplo n.º 2
0
def test_lex_null():
    assert hello('') == ''
Exemplo n.º 3
0
def test_print_with_escaped_newlines():
    assert hello('print butt\\n\n    print fart 420 blaze it'
                 ) == ' butt\n fart 420 blaze it'
Exemplo n.º 4
0
def test_print_twice():
    assert hello(
        'print butt\n    print fart 420 blaze it') == ' butt fart 420 blaze it'
Exemplo n.º 5
0
def test_print():
    assert hello('print butt') == ' butt'
Exemplo n.º 6
0
def test_hihi():
    assert hello('hello hello') == 'hello, world!\nhello, world!\n'
Exemplo n.º 7
0
def test_comments():
    assert hello('hello no') == 'hello, world!\n'
Exemplo n.º 8
0
def test_hello_whitespace():
    assert hello('\n\n   hello\n\t') == 'hello, world!\n'