diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-09-05 20:35:53 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-09-05 20:35:53 +0200 |
| commit | f20bd89dc4a7bf14a88b1effcaa1887b29314525 (patch) | |
| tree | d114787f68efd2a7d61d95fa9c84e8e5d69a7c11 /addons/gut/plugin_control.gd | |
| parent | 1b477b62f8be8c546a35dbd1d2688ebf623c496f (diff) | |
| download | texty-f20bd89dc4a7bf14a88b1effcaa1887b29314525.tar.xz texty-f20bd89dc4a7bf14a88b1effcaa1887b29314525.zip | |
gui: split GUI into Terminal components
Diffstat (limited to 'addons/gut/plugin_control.gd')
| -rw-r--r-- | addons/gut/plugin_control.gd | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/addons/gut/plugin_control.gd b/addons/gut/plugin_control.gd index c363b2a..0e14cea 100644 --- a/addons/gut/plugin_control.gd +++ b/addons/gut/plugin_control.gd @@ -69,13 +69,10 @@ export var _yield_between_tests = true # development to prevent any breaking changes and will likely be removed in # the future. export var _disable_strict_datatype_checks = false -# The prefix used to find test methods. -export var _test_prefix = 'test_' # The prefix used to find test scripts. export var _file_prefix = 'test_' -# The file extension for test scripts (I don't think you can change this and -# everythign work). -export var _file_extension = '.gd' +# The suffix used to find test scripts. +export var _file_suffix = '.gd' # The prefix used to find Inner Test Classes. export var _inner_class_prefix = 'Test' # The directory GUT will use to write any temporary files. This isn't used @@ -181,9 +178,7 @@ func _setup_gut(): _gut._tests_like = _tests_like _gut._inner_class_name = _inner_class_name - _gut._test_prefix = _test_prefix _gut._file_prefix = _file_prefix - _gut._file_extension = _file_extension _gut._inner_class_prefix = _inner_class_prefix _gut._temp_directory = _temp_directory |
