It looks like the generated isolation isn't implementing IHomeRepository:

irb(main):032:0> repo = isolate FakeMvcProject::Controllers::IHomeRepository
=> #<Object805c8b559a854b9ca0269e9b1d7f7643:0x0000482>
irb(main):033:0> repo.GetType.get_interfaces
=> [System.ComponentModel.ICustomTypeDescriptor,
IronRuby.Runtime.Calls.IRubyDynamicMetaObjectProvider,
System.Dynamic.IDynamicMetaObjectProvider,
IronRuby.Runtime.IRubyObject,
IronRuby.Runtime.IRubyObjectState,
IronRuby.Runtime.IDuplicable,
System.Runtime.Serialization.ISerializable]


I also tried this (notice that IHomeRepository *is* listed):

irb(main):034:0> class Foo
irb(main):035:1>   include IHomeRepository
irb(main):036:1> end
=> Foo
irb(main):037:0> Foo.new.GetType.get_interfaces
=> [IronRuby.Runtime.IRubyObject,
IronRuby.Runtime.IRubyObjectState,
System.Runtime.Serialization.ISerializable,
IronRuby.Runtime.Calls.IRubyDynamicMetaObjectProvider,
System.Dynamic.IDynamicMetaObjectProvider,
System.ComponentModel.ICustomTypeDescriptor,
IronRuby.Compiler.Generation.IRubyType,
FakeMvcProject.Controllers.IHomeRepository]


It looks like this might be a problem with Caricature (perhaps only when
running IR 1.1?).


-Charles


On Wed, Aug 4, 2010 at 4:40 PM, Ivan Porto Carrero <i...@flanders.co.nz>wrote:

>
>
> try doing
>
> ITestService.isolate
>
> or
>
> isolation_for ITestService
> ---
> Met vriendelijke groeten - Best regards - Salutations
> Ivan Porto Carrero
> Author of IronRuby in Action (http://manning.com/carrero)
> Microsoft IronRuby/C# MVP
>
>
>
> On Wed, Aug 4, 2010 at 10:56 PM, Nieve G. <li...@ruby-forum.com> wrote:
>
>> Charles,
>> you can take a look at it here:
>> http://github.com/nieve/IsolationTest
>>
>> I just hope it's not something completely obvious...
>> --
>> Posted via http://www.ruby-forum.com/.
>> _______________________________________________
>> Ironruby-core mailing list
>> Ironruby-core@rubyforge.org
>> http://rubyforge.org/mailman/listinfo/ironruby-core
>>
>
>
>
> _______________________________________________
> Ironruby-core mailing list
> Ironruby-core@rubyforge.org
> http://rubyforge.org/mailman/listinfo/ironruby-core
>
>
_______________________________________________
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to