[Answered ]-Getting the User from an APIClient() in DRF

1👍

I’m sure that the create_user is another fixture and thus you can have that in your test_get_user(...) as


def test_get_user(create_client, create_user):
    print(create_user)
    # do some tests here
👤JPG

Leave a comment