Skip to content

Commit

Permalink
Update project test and Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azawawi committed Sep 29, 2022
1 parent 696dbc2 commit 1b6c832
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "Godot::Fun",
"license" : "MIT",
"version" : "0.1.0",
"version" : "0.2.0",
"perl" : "6.d",
"description" : "Raku fun with Godot",
"test-depends" : [
Expand Down
3 changes: 2 additions & 1 deletion t/02-project.rakutest
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ my $temp_folder = $*TMPDIR.add(q{raku-godot-fun-} ~ now.Int).mkdir;
ok $temp_folder ~~ :e, "folder '$temp_folder' is found";

# Create empty godot scene
my $scene = Godot::Fun::Scene.new(name => 'Hello', type => 'Spatial');
my $spatial = Godot::Fun::Spatial.new(name => 'Spatial');
my $scene = Godot::Fun::Scene.new(name => 'Hello', root_node => $spatial);
$scene.save($temp_folder.Str);

# Create godot project
Expand Down

0 comments on commit 1b6c832

Please sign in to comment.