I have some methods written into a django.test.TestCase object that I'd like to run from the
manage.py shell on my real database. But when I try to instantiate the TestCase object to run the test method, I get this error:
ValueError: no such test method in <class 'track.tests.MentionTests'>: runTest
Is there a way to instantiate the TestCase objects? Or is there a way to run a test method against a non-test database?