Merge pull request #801 from nepoz/NetworkTestFix

Removed dependency on pytest-socket for the Network module's unit tests.
This commit is contained in:
tobi-wan-kenobi 2021-07-09 08:28:16 +02:00 committed by GitHub
commit 4d422ffc84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,8 +39,9 @@ class TestNetworkUnit(TestCase):
def test_load_module(self):
__import__("modules.contrib.network")
@pytest.mark.allow_hosts(["127.0.0.1"])
def test_no_internet(self):
@mock.patch("socket.create_connection")
def test_no_internet(self, socket_mock):
socket_mock.side_effect = Exception()
module = build_module()
assert module.widgets()[0].full_text() == "No connection"