This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from unittest import TestCase | |
from mock import patch | |
from my.module import MyClass | |
@patch("my.module.OtherClass") | |
class TestMyClass(TestCase): | |
def test_something(self, mocked_other_class): |