From: Robert Klemme Date: 2005-09-21T01:56:38+09:00 Subject: Re: Interesting class christophe.poucet@gmail.com wrote: > Not if you have the following pattern: > > class Base > def teardown > # do a > end > end > > module Foo > def teardown > # do b > end > end > > class Child < B > include Foo > def teardown > # call super and my own Foo.teardown somehow > # do c > end > end > > Regards, > Christophe Why? Did you test my approach? robert