require File.join(File.dirname(__FILE__), "../../spec_helper") include Nudge describe CodePopInstruction do it_should_behave_like "every Nudge Instruction" before(:each) do @context = Interpreter.new @i1 = CodePopInstruction.new(@context) end describe "\#go" do before(:each) do @i1 = CodePopInstruction.new(@context) @code1 = ValuePoint.new("code", "block {}") end describe "\#preconditions?" do it "should check that there are enough parameters" do 2.times {@context.stacks[:code].push(@code1)} @i1.preconditions?.should == true end it "should raise an error if the preconditions aren't met" do @context.clear_stacks # there are no params at all lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems) end it "should successfully run #go only if all preconditions are met" do 3.times {@context.stacks[:code].push(@code1)} @i1.should_receive(:cleanup) @i1.go end end describe "\#derive" do it "should pop one item" do 2.times {@context.stacks[:code].push(@code1)} @i1.go @context.stacks[:code].depth.should == 1 end end end end