Sha256: 1b5614fd2ff31c64aa4f4d57db3fe84052a91d01f45da6ac21d2ad77c2e5efb0
Contents?: true
Size: 1.67 KB
Versions: 8
Compression:
Stored size: 1.67 KB
Contents
require File.join(File.dirname(__FILE__), "../../spec_helper") include Nudge describe FloatRotateInstruction do it_should_behave_like "every Nudge Instruction" before(:each) do @context = Interpreter.new @i1 = FloatRotateInstruction.new(@context) end describe "\#go" do before(:each) do @i1 = FloatRotateInstruction.new(@context) @float1 = ValuePoint.new("float", 1.0) end describe "\#preconditions?" do it "should check that there are enough parameters" do 3.times {@context.stacks[:float].push(@float1)} @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[:float].push(@float1)} @i1.should_receive(:cleanup) @i1.go end end describe "\#derive" do it "should pop all the arguments" do 3.times {@context.stacks[:float].push(@float1)} @i1.stub!(:cleanup) # and do nothing @i1.go @context.stacks[:float].depth.should == 0 end end describe "\#cleanup" do it "should move around the top three values" do @context.push(:float,"3.3") @context.push(:float,"2.2") @context.push(:float,"1.1") @i1.go @context.pop_value(:float).should == 3.3 @context.pop_value(:float).should == 1.1 @context.pop_value(:float).should == 2.2 end end end end
Version data entries
8 entries across 8 versions & 1 rubygems