Hi! all I have created a custom managerial command, and while adding a test case I am facing an issue.
I have a test class that inherits Testcase from django.test in which I have two different methods. Now only one of the test cases seems to be passing and the weird thing about this is that the test case that is being named to test_command is passing.
Scenario 1:
class A():
def test_command() - pass
def random() - fails
Scenario 2:
class A():
def random() - fails
def test_command() - pass
Any help is appreciated.