Sha256: e9d5e57771df849d28638187af3a968a06d61c83cde2dee77cf6dbfe34c64d31
Contents?: true
Size: 1.34 KB
Versions: 8
Compression:
Stored size: 1.34 KB
Contents
require File.join(File.dirname(__FILE__), "../../spec_helper") include Nudge describe BoolDuplicateInstruction do it_should_behave_like "every Nudge Instruction" before(:each) do @context = Interpreter.new @i1 = BoolDuplicateInstruction.new(@context) end describe "\#go" do before(:each) do @i1 = BoolDuplicateInstruction.new(@context) @bool1 = ValuePoint.new("bool", false) end describe "\#preconditions?" do it "should check that there are enough parameters" do 2.times {@context.stacks[:bool].push(@bool1)} @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[:bool].push(@bool1)} @i1.should_receive(:cleanup) @i1.go end end describe "\#cleanup" do it "should swap the top two values" do @context.push(:bool,"false") @i1.go @context.depth(:bool).should == 2 @context.pop_value(:bool).should == false @context.pop_value(:bool).should == false end end end end
Version data entries
8 entries across 8 versions & 1 rubygems