I'm trying to unit test my private class, but import doesn't seem to find my class:
class __MyClass:
something
from location import __MyClass
class MyClassTest(unittest.TestCase):
def setUp(self):
self.test_class = __MyClass(x, y, z)
I've also tried using the entire reference, but it's still unable to find my class.