Sha256: e28ccbf9cd6f48ae838d330d57a20ececcf0725ebe4919ddab24def95df5b87f

Contents?: true

Size: 1.14 KB

Versions: 8

Compression:

Stored size: 1.14 KB

Contents

#encoding: utf-8
require File.join(File.dirname(__FILE__), "../../spec_helper")
include Nudge

describe IntFromBoolInstruction do
  
  it_should_behave_like "every Nudge Instruction"
  
  before(:each) do
    @context = Interpreter.new
    @i1 = IntFromBoolInstruction.new(@context)
    @context.clear_stacks
  end
  
  it "should check that there are enough parameters" do
    @context.push(:bool, "false")
    @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
    @context.push(:bool, "false")
    @i1.should_receive(:cleanup)
    @i1.go
  end
  
  it "should create and push the new (expected) value to the right place" do
    @context.push(:bool, "false")
    @i1.go
    @context.depth(:int).should == 1
    @context.peek_value(:int).should == 0
    
    @context.push(:bool, "true")
    @i1.go
    @context.depth(:int).should == 2
    @context.peek_value(:int).should == 1
    
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
nudge-0.2.9 spec/instructions/int/int_from_bool_spec.rb
nudge-0.2.8 spec/instructions/int/int_from_bool_spec.rb
nudge-0.2.7 spec/instructions/int/int_from_bool_spec.rb
nudge-0.2.6 spec/instructions/int/int_from_bool_spec.rb
nudge-0.2.5 spec/instructions/int/int_from_bool_spec.rb
nudge-0.2.4 spec/instructions/int/int_from_bool_spec.rb
nudge-0.2.3 spec/instructions/int/int_from_bool_spec.rb
nudge-0.2.2 spec/instructions/int/int_from_bool_spec.rb