Sha256: 475a4008bc3b0a07c7199ed43d7abaa8eadcc7ff5980e9676240f04cbae084bf
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
require 'helper' describe "pausing in gamebox", acceptance: true do define_behavior :shoot_rock do |beh| beh.requires :timer_manager beh.setup do actor.has_attributes rocks_shot: 0 timer_manager.add_timer 'shoot_rock', 1_000 do actor.react_to :shoot_rock end end react_to do |msg, *args| actor.rocks_shot += 1 if msg == :shoot_rock end end define_actor :volcano do has_behavior :shoot_rock end it 'allows timers and all updates from the director to be paused / unpaused' do game.stage do |stage| # instance of TestingStage @counter = 0 timer_manager.add_timer 'stage_timer', 2000 do @counter += 1 end create_actor :volcano end see_actor_attrs :volcano, rocks_shot: 0 see_stage_ivars counter: 0 update 100 see_actor_attrs :volcano, rocks_shot: 0 see_stage_ivars counter: 0 update 901 see_actor_attrs :volcano, rocks_shot: 1 see_stage_ivars counter: 0 pause update 2001 see_actor_attrs :volcano, rocks_shot: 1 see_stage_ivars counter: 0 update 2001 see_actor_attrs :volcano, rocks_shot: 1 see_stage_ivars counter: 0 unpause update 2001 see_actor_attrs :volcano, rocks_shot: 2 see_stage_ivars counter: 1 pending "add more actors _during_ the pause" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gamebox-0.4.0.rc2 | spec/acceptance/pausing_spec.rb |
gamebox-0.4.0.rc1 | spec/acceptance/pausing_spec.rb |