Sha256: 1924488fac26ccc3b4a68d06a52783c8b307814897fadeef123b6ada047b8b25

Contents?: true

Size: 638 Bytes

Versions: 2

Compression:

Stored size: 638 Bytes

Contents

require File.dirname(__FILE__) + "/../spec_helper"

describe "CLR to CLR interactions" do

  describe "when isolating CLR classes" do

    describe "that have an indexer" do
      before do
        @cons = ClrModels::IndexerCaller.new
        @ind = Caricature::Isolation.for(ClrModels::IndexerContained)
      end

      it "should work without expectations" do
        @cons.call_index_on_class(@ind, "key1").should.be.nil
      end

      it "should work with an expectation" do
        @ind.when_receiving(:get_Item).return("5")
        
        @cons.call_index_on_class(@ind, "key1").should.equal "5"
      end


    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
caricature-0.7.7 spec/bacon/integration/indexer_spec.rb
caricature-0.7.6 spec/bacon/integration/indexer_spec.rb