Sha256: 875349dbd59822fde05effdf8b6d3fcc0cebd89cb42b237be23d024b1cfc69d4
Contents?: true
Size: 1.17 KB
Versions: 8
Compression:
Stored size: 1.17 KB
Contents
require File.dirname(__FILE__) + "/bacon_helper" describe "Event handling" do describe "for precompiled CLR classes" do before do @warrior = ClrModels::ExposingWarrior.new end it "should subscribe to an event" do ClrModels::ExposedChangedSubscriber.new(@warrior) @warrior.has_event_subscriptions.should.be.true? end it "should not raise an error when subcribing to an event" do lambda { ClrModels::ExposedChangedSubscriber.new(@warrior) }.should.not.raise end it "should handle an event when raised" do subscriber = ClrModels::ExposedChangedSubscriber.new(@warrior) @warrior.change_is_exposed subscriber.counter.should.equal 1 end end describe "for an IR generated interface proxy" do before do @proxy = Caricature::RecordingClrProxy.new ClrModels::IExposingWarrior end # apparently events don't work yet in IronRuby.. keeping this spec here to find out when it does # it "should not raise an error when subcribing to an event" do # lambda { ClrModels::ExposedChangedSubscriber.new(@proxy.subject) }.should.not.raise # end end end
Version data entries
8 entries across 8 versions & 2 rubygems