diff options
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 |
