Am 29.11.2022 um 02:49 schrieb Roy Smith <roy@panix.com>:
_______________________________________________I've got:platform darwin -- Python 3.9.13, pytest-7.2.0, pluggy-1.0.0rootdir: /Users/roy/dev/dyk-tools, configfile: src/pages/pytest.iniplugins: mock-3.10.0, socket-0.5.1When I run the following:def test_ip(mocker):mock_IPv4Address = mocker.patch('ipaddress.IPv4Address', autospec=True)ip = mock_IPv4Address('1.2.3.4')assert mock_IPv4Address.xxyyzzdef test_site(mocker):mock_Site = mocker.patch('pywikibot.Site', autospec=True)site = mock_Site('en', 'wikipedia')assert site.xxyyzztest_ip() fails, as I expect it to, with AttributeError: Mock object has no attribute 'xxyyzz'. But, test_site() passes. WTF? Why does it not also fail with the same error?
pywikibot mailing list -- pywikibot@lists.wikimedia.org
To unsubscribe send an email to pywikibot-leave@lists.wikimedia.org