from unittest import mock class SomeClass: def new_method(self): return 20 mock = mock.Mock(spec=SomeClass) print(mock.new_method()) ...
確定! 回上一頁