Sha256: 73173165cefd5b51fdc0a715c0033acfd83fc88456177edfc93bfd5f05e0d4f7
Contents?: true
Size: 1.76 KB
Versions: 14
Compression:
Stored size: 1.76 KB
Contents
require File.join(File.dirname(__FILE__), "../../spec_helper") include Nudge describe FloatModuloInstruction do it_should_behave_like "every Nudge Instruction" before(:each) do @context = Interpreter.new @i1 = FloatModuloInstruction.new(@context) end describe "\#go" do before(:each) do @i1 = FloatModuloInstruction.new(@context) @context.clear_stacks @float1 = ValuePoint.new("float", 12.12) end describe "\#preconditions?" do it "should check that there are enough parameters" do lambda{@i1.preconditions?}.should raise_error 10.times {@context.stacks[:float].push(@float1)} @i1.preconditions?.should == true end end describe "\#derive" do it "should pop all the arguments" do 2.times {@context.stacks[:float].push(@float1)} @i1.stub!(:cleanup) # and do nothing @i1.go @context.stacks[:float].depth.should == 0 end it "should push an error if it tries to divide by zero" do @context.clear_stacks @context.stacks[:float].push(ValuePoint.new("float", 10.10)) @context.stacks[:float].push(ValuePoint.new("float", 0.0)) @i1.go @context.stacks[:error].depth.should == 1 end end describe "\#cleanup" do describe "should push the result" do {[1.1, 0.2] => 0.1, [-99.5 % 4.75] => 0.25, [-99.5 % -4.75] => -4.5}.each do |inputs, expected| params = inputs.inspect it "should produce #{expected} given #{params}" do inputs.each {|i| @context.stacks[:float].push(ValuePoint.new("float", i))} @i1.go @context.stacks[:float].peek.value.should be_close(expected,0.000001) end end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems