From 7dc155cab31b3d14ee4eef2901ec228f792e024a Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 23 Dec 2025 11:50:16 -0500 Subject: [PATCH] Remove mention of monkey patching tests from README We used to have to monkey patch by hand, but now we are able to use the mock package instead, which is generally less cumbersome. See commit 1756c8950e36dee2568228a7f0c25ee2b2f9a655, for the final removal of this directory. Signed-off-by: mulhern --- tests/README.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/README.txt b/tests/README.txt index 934bd0fc2..005f94048 100644 --- a/tests/README.txt +++ b/tests/README.txt @@ -2,7 +2,6 @@ This directory contains tests of the CLI functionality. There are three directories containing three types of tests: * unit - strict unit tests which require no setup of the environment -* monkey_patching - tests that use monkey_patching to mock some behavior * integration - straightforward tests of functionality The project Makefile has make targets for running these different categories