def test_allWishlist():
    with app.test_client() as client:
        response = client.get('/')
        assert response.status == "302 FOUND"
def test_logout():
    with app.test_client() as client:
        response = client.get('/profile/')
        assert response.status == "302 FOUND"
def test_signup():
    with app.test_client() as client:
        response = client.get('/signup/')
        assert response.status == "200 OK"
def test_login():
    with app.test_client() as client:
        response = client.get('/login/')
        assert response.status == "200 OK"
def test_home():
    with app.test_client() as client:
        response = client.get('/home/')
        assert response.status == "200 OK"