From: Julian Leviston Date: 2008-04-08T15:47:18+09:00 Subject: Re: testing a singleton method.... Could you post more context? Chances are the singleton you *think* you're testing is not the same instance you actually *are* testing. Julian. Learn Ruby on Rails! Check out the FREE VIDS (for a limited time) VIDEO #3 out NOW! http://sensei.zenunit.com/ On 08/04/2008, at 4:18 PM, Feng Tien wrote: > Trying to pass a unit test; > > def test_singleton_method > string1 = "hello" > string2 = "world" > > assert string1.respond_to?(:only_one) > assert !string2.respond_to?(:only_one) > end > > ==== > > my code to pass it: > > string1 = "hello" > string2 = "world" > > def string1.only_one > puts "PLEASE WORK" > end > > > === > > yet, this doesn't work, is there something I'm missing? > -- > Posted via http://www.ruby-forum.com/. >