Example #1
0
def test_socket_get():
    echo_server.main_loop()
    todo.todos = [
            { 'title':'test medium todo',
                'description':'This is a medium todo',
                'level':'medium'
                },
            { 'title': 'test another medium todo',
                'description':'This is another medium todo',
                'level':'medium'
                },
            ]

    uri = '/1'
    method = 'GET'

    result = echo_server.handle_request(uri, method)
    print result
Example #2
0
    assert todo.todos[0]['level'] == "IMPORTANT"
    assert todo.todos[1]['level'] == "medium"

    print "ok -- edit_importance"

test_edit_importance()

def test_socket_get():
    echo_server.main_loop()
    todo.todos = [
            { 'title':'test medium todo',
                'description':'This is a medium todo',
                'level':'medium'
                },
            { 'title': 'test another medium todo',
                'description':'This is another medium todo',
                'level':'medium'
                },
            ]

    uri = '/1'
    method = 'GET'

    result = echo_server.handle_request(uri, method)
    print result

test_socket_get()

if __name__ == '__main__':
    echo_server.main_loop()