Skip to content

GdUnit3 v1.0.3

Compare
Choose a tag to compare
@MikeSchulze MikeSchulze released this 18 Aug 18:34
· 224 commits to master since this release

GdUnit3 v1.0.3


!!ATTENTION!!

After upgrading to 1.0.3, a restart of Godot is strongly recommended

For more details see GD-139: Plugin is broken after Update from 1.0.2 to 1.0.3


Improvements

  • GdUnit3Inspector
    • Changes wiki button to doc tool button
    • Added new tool button to configure GdUnit3 Settings (#89 )
      image
      • The dialog provides buttons to report a bug or feature and install examples
      • A better GdUnit3 settings page with help text for each property
        image
  • ArrayAssert
    • You can now use function name chaning on extract functions by using function names separated by a dot #133
    # get_parent.get_name -> like get_parent().get_name() to extraxt the name from the parent
    assert_arrary(nodes).extract("get_parent.get_name").contains("name_a", "name_b")
    

Bug Fixes

  • Fixes update was failing on Windows with multiple installed tar tools #113
  • Fixes update bug that incorrectly uses a previously installed update data #124
  • Allow to extend a existing test suite by resource path #131
    extends "res://tests/BaseTest.gd"