Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwes committed Feb 5, 2017
1 parent 0ea73b0 commit b4c0c59
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions addons/gut/gut.gd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
################################################################################
# View readme for usage details.
#
# Version 3.1
# Version 4.0.0
################################################################################
extends WindowDialog

Expand All @@ -37,7 +37,7 @@ extends WindowDialog
# Editor Variables
# ###########################
export var _run_on_load = false
export(String) var _select_script = null
export(String) var _select_script = null
export(String) var _tests_like = null
export var _should_print_to_console = true setget set_should_print_to_console, get_should_print_to_console
export(int, 'Failures only', 'Tests and failures', 'Everything') var _log_level = 1 setget set_log_level, get_log_level
Expand Down Expand Up @@ -408,15 +408,15 @@ func _ready():
add_directory(_directory4)
add_directory(_directory5)
add_directory(_directory6)

_update_controls()

if(_select_script != null):
select_script(_select_script)

if(_tests_like != null):
set_unit_test_name(_tests_like)

if(_run_on_load):
test_scripts(_select_script == null)

Expand Down Expand Up @@ -944,7 +944,7 @@ func test_script(script):
func add_script(script, select_this_one=false):
if(_test_scripts.has(script)):
return

_test_scripts.append(script)
_ctrls.scripts_drop_down.add_item(script)
# Move the run_button in case the size of the path of the script caused the
Expand Down Expand Up @@ -1198,7 +1198,7 @@ func disable_strict_datatype_checks(should):

func is_strict_datatype_checks_disabled():
return _disable_strict_datatype_checks

#-------------------------------------------------------------------------------
#Pauses the test and waits for you to press a confirmation button. Useful when
#you want to watch a test play out onscreen or inspect results.
Expand Down Expand Up @@ -1308,7 +1308,7 @@ func set_yield_between_tests(should):

func get_yield_between_tests():
return _yield_between.should

#-------------------------------------------------------------------------------
#Call _process or _fixed_process, if they exist, on obj and all it's children
#and their children and so and so forth. Delta will be passed through to all
Expand Down
2 changes: 1 addition & 1 deletion addons/gut/gut_cmdln.gd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# See the readme for a list of options and examples. You can also use the -gh
# option to get more information about how to use the command line interface.
#
# Version 3.1
# Version 4.0.0
################################################################################
extends SceneTree

Expand Down
2 changes: 1 addition & 1 deletion addons/gut/test.gd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
################################################################################
# View readme for usage details.
#
# Version 3.1
# Version 4.0.0
################################################################################
# Class that all test scripts must extend.
#
Expand Down

0 comments on commit b4c0c59

Please sign in to comment.