def test__bug1258464_when_raise_NotImplementedError(mocker):
mock_pymysql = mocker.patch('proxysql_tools.util.bug1258464.pymysql')
mock_cursor = mock.MagicMock()
mock_cursor.fetchone.return_value = [100]
mock_pymysql.connect.return_value.cursor.return_value.__enter__.return_value = mock_cursor
mock_get_my_cnf = mocker.patch('proxysql_tools.util.bug1258464.get_my_cnf')
mock_get_my_cnf.return_value = 'some path'
mock_get_my_cnf.side_effect = NotImplementedError
assert not bug1258464('some path')
评论列表
文章目录