From 9c2ec6e697aab805bfa6d5be5ae3cc905dcc1994 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 25 Aug 2021 16:50:21 +0200 Subject: [PATCH] Add a README to link to the GDScript integration tests documentation This makes the documentation about creating and running GDScript integration tests more discoverable. --- modules/gdscript/tests/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 modules/gdscript/tests/README.md diff --git a/modules/gdscript/tests/README.md b/modules/gdscript/tests/README.md new file mode 100644 index 00000000000..6e540859623 --- /dev/null +++ b/modules/gdscript/tests/README.md @@ -0,0 +1,8 @@ +# GDScript integration tests + +The `scripts/` folder contains integration tests in the form of GDScript files +and output files. + +See the +[Integration tests for GDScript documentation](https://docs.godotengine.org/en/latest/development/cpp/unit_testing.html#integration-tests-for-gdscript) +for information about creating and running GDScript integration tests.