diff options
Diffstat (limited to 'samples/99_genre_crafting/farming_game_starting_point/app/tests.rb')
| -rw-r--r-- | samples/99_genre_crafting/farming_game_starting_point/app/tests.rb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/samples/99_genre_crafting/farming_game_starting_point/app/tests.rb b/samples/99_genre_crafting/farming_game_starting_point/app/tests.rb new file mode 100644 index 0000000..458bc18 --- /dev/null +++ b/samples/99_genre_crafting/farming_game_starting_point/app/tests.rb @@ -0,0 +1,29 @@ +# For advanced users:
+# You can put some quick verification tests here, any method
+# that starts with the `test_` will be run when you save this file.
+
+# Here is an example test and game
+
+# To run the test: ./dragonruby mygame --eval app/tests.rb --no-tick
+
+class MySuperHappyFunGame
+ attr_gtk
+
+ def tick
+ outputs.solids << [100, 100, 300, 300]
+ end
+end
+
+def test_universe args, assert
+ game = MySuperHappyFunGame.new
+ game.args = args
+ game.tick
+ assert.true! args.outputs.solids.length == 1, "failure: a solid was not added after tick"
+ assert.false! 1 == 2, "failure: some how, 1 equals 2, the world is ending"
+ puts "test_universe completed successfully"
+end
+
+puts "running tests"
+$gtk.reset 100
+$gtk.log_level = :off
+$gtk.tests.start
|
