From c7f8e5d05e84f071f28ca692620b3d85093e3226 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Fri, 1 Feb 2019 23:59:13 +0000 Subject: [PATCH] doc: Correct path of unit tests directory (#51631) +label: docsite_pr --- docs/docsite/rst/dev_guide/testing_units_modules.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/dev_guide/testing_units_modules.rst b/docs/docsite/rst/dev_guide/testing_units_modules.rst index 19f91d44e62..3ec1a2df247 100644 --- a/docs/docsite/rst/dev_guide/testing_units_modules.rst +++ b/docs/docsite/rst/dev_guide/testing_units_modules.rst @@ -23,9 +23,9 @@ please open a bug or ask for help on Ansible IRC. What Are Unit Tests? ==================== -Ansible includes a set of unit tests in the :file:`test/unit` directory. These tests primarily cover the +Ansible includes a set of unit tests in the :file:`test/units` directory. These tests primarily cover the internals but can also can cover Ansible modules. The structure of the unit tests matches -the structure of the code base, so the tests that reside in the :file:`test/unit/modules/` directory +the structure of the code base, so the tests that reside in the :file:`test/units/modules/` directory are organized by module groups. Integration tests can be used for most modules, but there are situations where