Sha256: e5307af5e27dd13f940315de3791656707cac6ec97117309e55fb47b53669922

Contents?: true

Size: 684 Bytes

Versions: 3

Compression:

Stored size: 684 Bytes

Contents

require File.join(File.dirname(__FILE__),'helper')

describe 'A new stage manager' do
  before do
#    opts = {:resource_manager => stub, :actor_factory => stub, :input_manager => stub, 
#      :sound_manager => stub, :config_manager => stub}
#    @stage_manager = StageManager.new opts
  end

  it 'should construct' #do
#    @stage_manager.should_not be_nil
#  end

  describe '#prev_stage' do
    it 'should exit on prev_stage of first stage'
    it 'should go to prev stage'
  end
  describe '#next_stage' do
    it 'should exit on next_stage of last stage'
    it 'should go to next stage'
  end
  describe '#restart_stage' do
    it 'should restart the current stage'
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gamebox-0.3.4 spec/stage_manager_spec.rb
gamebox-0.3.3 spec/stage_manager_spec.rb
gamebox-0.3.2 spec/stage_manager_spec.rb