[rspec-users] what's the different between ([@weather]) and (@weather)?
Zhenning Guan
lists at ruby-forum.com
Thu Mar 26 02:23:55 EDT 2009
before do
@weather = mock_model(Weather)
Weather.stub!(:find).and_return([@weather])
end
I saw this code on peepcode, but I'm a little confused the
and_return([@weather]).
mostly, we just and_return(@weather), don't we? so, what is the meaning
of and_return([@weather]) ?
--
Posted via http://www.ruby-forum.com/.
More information about the rspec-users
mailing list