Sha256: 8c6104e8e8bdca86ad1d2262d9ae68da827de08bef0e5435d33d71c68f4db125

Contents?: true

Size: 1.5 KB

Versions: 1

Compression:

Stored size: 1.5 KB

Contents

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

describe ProportionMinInstruction do
  
  it_should_behave_like "every Nudge Instruction"
  
  before(:each) do
    @context = Interpreter.new
    @i1 = ProportionMinInstruction.new(@context)
  end
  
  describe "\#go" do
    before(:each) do
      @context = Interpreter.new
      @i1 = ProportionMinInstruction.new(@context)
      @context.clear_stacks
      @p1 = ValuePoint.new("proportion", 0.2)
    end

    describe "\#preconditions?" do
      it "should check that there are enough parameters" do
        lambda{@i1.preconditions?}.should raise_error
        10.times {@context.stacks[:proportion].push(@p1)}
        @i1.preconditions?.should == true
      end
    end
    
    describe "\#derive" do
      it "should pop all the arguments" do
        2.times {@context.stacks[:proportion].push(@p1)}
        @i1.stub!(:cleanup) # and do nothing
        @i1.go
        @context.stacks[:proportion].depth.should == 0
      end
    end
    
    describe "\#cleanup" do
      describe "should push the result" do
        {[0.1, 0.2] => 0.1, [0.9, 0.5] => 0.5, [1.0, 1.0] => 1.0}.each do |inputs, expected|
          params = inputs.inspect
          it "should produce #{expected} given #{params}" do
          inputs.each {|i| @context.stacks[:proportion].push(ValuePoint.new("proportion", i))}
          @i1.go
          @context.stacks[:proportion].peek.value.should be_close(expected,0.000001)
        end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nudge-0.2.9 spec/instructions/proportion/proportion_min_spec.rb