From 02311e55c7769a152eefccb9114137d1017d8b86 Mon Sep 17 00:00:00 2001 From: Nicholas La Roux Date: Mon, 24 Mar 2025 13:27:41 +0900 Subject: [PATCH] Update doctest links from onqtam/doctest to doctest/doctest --- contributing/development/core_and_modules/unit_testing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contributing/development/core_and_modules/unit_testing.rst b/contributing/development/core_and_modules/unit_testing.rst index e9d94db7bd0..1b298a54b6b 100644 --- a/contributing/development/core_and_modules/unit_testing.rst +++ b/contributing/development/core_and_modules/unit_testing.rst @@ -4,7 +4,7 @@ Unit testing ============ Godot Engine allows to write unit tests directly in C++. The engine integrates -the `doctest `_ unit testing framework which +the `doctest `_ unit testing framework which gives ability to write test suites and test cases next to production code, but since the tests in Godot go through a different ``main`` entry point, the tests reside in a dedicated ``tests/`` directory instead, which is located at the root @@ -208,7 +208,7 @@ for more complex ones if you think that it deserves a better explanation. .. seealso:: - `doctest: Assertion macros `_. + `doctest: Assertion macros `_. Logging ~~~~~~~ @@ -236,7 +236,7 @@ output can be redirected to an XML file: .. seealso:: - `doctest: Logging macros `_. + `doctest: Logging macros `_. Testing failure paths ~~~~~~~~~~~~~~~~~~~~~