diff --git a/README.md b/README.md index 9245c1c..461369a 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ Here's a file structure for this project: │   │   │   ├── coreconfiguration.md │   │   │   ├── core.md │   │   │   ├── coretypes.md -│   │   │   ├── edl.md +│   │   │   ├── erm.md │   │   │   ├── loggerinstance.md │   │   │   ├── logger.md │   │   │   ├── misc.md @@ -170,7 +170,7 @@ Here's a file structure for this project: │   │   ├── loggerinstance.gd │   │   └── types.gd │   ├── core.gd -│   ├── edl.gd +│   ├── erm.gd │   ├── logger.gd │   ├── logui.gd │   ├── misc.gd @@ -178,11 +178,14 @@ Here's a file structure for this project: │   └── storage.gd ├── Test.gd Test script, only for testing during development ├── tests For unit testing -│   ├── custom_module.gd A custom module used in tests/unit/core.gd -│   ├── unit The actual unit tests that are executed by Bessere Tests -│   │   ├── core.gd -│   │   ├── misc.gd -│   │   └── z_cleanup.gd Ensures all nodes are cleaned up, throws an error otherwise. +│ ├── test_resources Scripts, scenes and other resources used in tests +│ │   ├── custom_module.gd A custom module used in 'tests/unit/core.gd' +│ │   ├── scene.gd Updates the callback value +│ │   └── scene.tscn Loads 'scene.gd' +│ ├── unit The actual unit tests +│ │   ├── core.gd +│ │   ├── misc.gd +│ │   └── sms.gd │   └── unitbase.gd The base for all of our unit tests, includes functions and variables used in all unit tests. └── Test.tscn Simply executes `Test.gd` ```