From f157d9c4fb46de442d60e246408d7a97fe8a28ca Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Wed, 17 Jun 2020 18:37:04 +0200 Subject: [PATCH] cours: exercice 2 --- illustrations/1_tester/test_integration.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/illustrations/1_tester/test_integration.py b/illustrations/1_tester/test_integration.py index ecd13fe..40f0b79 100644 --- a/illustrations/1_tester/test_integration.py +++ b/illustrations/1_tester/test_integration.py @@ -7,7 +7,6 @@ class UnixFS: os.remove(filename) # Sans intégration - def test_monkeypatche(mocker): mocker.patch('os.remove') UnixFS.rm('contrôle complet') @@ -21,4 +20,6 @@ def test_db_with_db(): fp.seek(0) assert fp.read() == b'Bonjour!' UnixFS.rm(fp.name) - # assert que le fichier a été supprimé. + # Exercice: assert que le fichier a été supprimé. + # assert not os.access(fp.name)? + # https://docs.python.org/fr/3/library/os.html