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