On Sat, 19 Aug 2000, Masaki Suketa wrote: > Hello, [...] > > FYI, RubyUnit includes ToPublic module. ToPublic#to_public method > creates a subclass of your class which all methods are public > methods. > For example, > [...] > > class TestMyClass < RUNIT::TestCase > include ToPublic > def setup > @aMyClass = to_public(MyClass).new > end > def test_my_private_method > # you can access private_method > assert(@aMyClass.my_private_method) > end > end > Ah, I had wondered what that was about. Thank you. > Thank you, > Masaki Suketa <CQN02273 / nifty.ne.jp> > Hugh