Sha256: 74f1792f6b86369f42fb04d4928901d82f27f688bad32413629e641e35bbe368

Contents?: true

Size: 879 Bytes

Versions: 14

Compression:

Stored size: 879 Bytes

Contents

require File.join(File.dirname(__FILE__), "../../spec_helper")
include Nudge


describe IntFlushInstruction do
  
  it_should_behave_like "every Nudge Instruction"
  
  before(:each) do
    @context = Interpreter.new
    @i1 = IntFlushInstruction.new(@context)
  end
  
  
  describe "\#go" do
    before(:each) do
      @i1 = IntFlushInstruction.new(@context)
      @context.clear_stacks
      @int1 = ValuePoint.new("int", 1)
    end
    
    describe "\#preconditions?" do
      it "should check that the :int stack responds to #depth" do
        @i1.preconditions?.should == true
      end
    end
    
    describe "\#cleanup" do
      it "should remove all items on the stack" do
        11.times {@context.stacks[:int].push(@int1)}
        @context.stacks[:int].depth.should == 11
        @i1.go
        @context.stacks[:int].depth.should == 0
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
nudge-0.2.9 spec/instructions/int/int_flush_spec.rb
nudge-0.2.8 spec/instructions/int/int_flush_spec.rb
nudge-0.2.7 spec/instructions/int/int_flush_spec.rb
nudge-0.2.6 spec/instructions/int/int_flush_spec.rb
nudge-0.2.5 spec/instructions/int/int_flush_spec.rb
nudge-0.2.4 spec/instructions/int/int_flush_spec.rb
nudge-0.2.3 spec/instructions/int/int_flush_spec.rb
nudge-0.2.2 spec/instructions/int/int_flush_spec.rb
nudge-0.2.1 spec/instructions/int/int_flush_spec.rb
nudge-0.2.0 spec/instructions/int/int_flush_spec.rb
nudge-0.1.3 spec/instructions/int/int_flush_spec.rb
nudge-0.1.2 spec/instructions/int/int_flush_spec.rb
nudge-0.1.1 spec/instructions/int/int_flush_spec.rb
nudge-0.1.0 spec/instructions/int/int_flush_spec.rb