[Fixed]-Checking Permissions in django TestCase

1👍

Just in case anyone ever finds this, my problem was that if the user is not activated (user.is_active == False) permissions checks always return False. I had to activate new_user before I could check the permissions were added.

Leave a comment