import pytest from util import Util def test_util_remove(mocker): m = mocker.patch('os.remove') Util.rm('file') m.assert_called() def ...
確定! 回上一頁