久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

'function' 對象沒有屬性 'assert_call_once_w

#39;function#39; object has no attribute #39;assert_called_once_with#39;(function 對象沒有屬性 assert_call_once_with)
本文介紹了'function' 對象沒有屬性 'assert_call_once_with'的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我正在嘗試使用 pytest 和 pytest_mock 運行以下測試

I'm trying to run the following test using pytest and pytest_mock

def rm(filename):
    helper(filename, 5)

def helper(filename):
    pass

def test_unix_fs(mocker):
    mocker.patch('module.helper')
    rm('file')
    helper.assert_called_once_with('file', 5)

但我得到異常 AttributeError: 'function' object has no attribute 'assert_called_once_with'

我做錯了什么?

推薦答案

你不能在 vanilla 函數上執行 .assert_call_once_with 函數:你首先需要包裝它與 mock.create_autospec 裝飾器.比如:

You can not perform a .assert_called_once_with function on a vanilla function: you first need to wrap it with the mock.create_autospec decorator. So for instance:

import unittest.mock as mock

def rm(filename):
    helper(filename, 5)

def helper(filename):
    pass

helper = mock.create_autospec(helper)

def test_unix_fs(mocker):
    mocker.patch('module.helper')
    rm('file')
    helper.assert_called_once_with('file', 5)

或者更優雅:

import unittest.mock as mock

def rm(filename):
    helper(filename, 5)

@mock.create_autospec
def helper(filename):
    pass

def test_unix_fs(mocker):
    mocker.patch('module.helper')
    rm('file')
    helper.assert_called_once_with('file', 5)

請注意,斷言將失敗,因為您僅使用 'file' 調用它.所以一個有效的測試是:

Note that the assertion will fail, since you call it only with 'file'. So a valid test would be:

import unittest.mock as mock

def rm(filename):
    helper(filename, 5)

@mock.create_autospec
def helper(filename):
    pass

def test_unix_fs(mocker):
    mocker.patch('module.helper')
    rm('file')
    helper.assert_called_once_with('file')

編輯:如果函數是在某個模塊中定義的,您可以將其包裝在本地的裝飾器中.例如:

EDIT: In case the function is defined in some module, you can wrap it in a decorator locally. For example:

import unittest.mock as mock
from some_module import some_function

some_function = mock.create_autospec(some_function)

def test_unix_fs(mocker):
    some_function('file')
    some_function.assert_called_once_with('file')

這篇關于'function' 對象沒有屬性 'assert_call_once_with'的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Python 3 Float Decimal Points/Precision(Python 3 浮點小數點/精度)
Converting Float to Dollars and Cents(將浮點數轉換為美元和美分)
What are some possible calculations with numpy or scipy that can return a NaN?(numpy 或 scipy 有哪些可能的計算可以返回 NaN?)
Python float to ratio(Python浮動比率)
How to manage division of huge numbers in Python?(如何在 Python 中管理大量數字的除法?)
mean from pandas and numpy differ(pandas 和 numpy 的意思不同)
主站蜘蛛池模板: 91久久精品国产91久久 | 国产剧情一区 | 国产精品永久免费视频 | 欧美一级网站 | 精品久久久久久久久久久院品网 | 精品国产一区二区三区性色av | 91九色麻豆 | 国产午夜视频 | 免费观看www7722午夜电影 | 国产日韩电影 | 女同久久另类99精品国产 | 久久久久精| 久久精品免费观看 | 国产一区二区三区在线 | 亚洲精品成人免费 | 欧美精品一级 | 国产欧美日韩一区二区三区在线 | 欧美成人精品一区二区男人看 | 国产欧美一区二区三区国产幕精品 | 久久国产香蕉 | 在线观看亚洲专区 | 美女黄18岁以下禁止观看 | 日韩午夜一区二区三区 | 国产盗摄视频 | 欧美日高清 | 97精品视频在线观看 | 草比网站| 玖草资源 | 久久精品超碰 | 亚洲精品久久久久久国产精华液 | 97国产精品| 中文字幕视频免费 | 欧美区日韩区 | 日日骚网 | 一区二区精品 | 国产亚洲精品久久午夜玫瑰园 | 精品欧美一区二区三区久久久 | 免费观看一级黄色录像 | 美女天天操 | 亚洲区在线 | 国产精品1区2区3区 中文字幕一区二区三区四区 |