I’m trying to set up testing on my ActiveResource project. The
HttpMock appears to be what I want, but whenever I use the code in the
“documentation”, I get the error
NameError: uninitialized constant ActiveResource::HttpMock
Is there something I need to do to enable HttpMock testing?
Thanks,
Tom
I’ve never used HttpMock for testing, but I’d recommend checking out
Fakeweb
(http://fakeweb.rubyforge.org/) for testing against external resource. I
use
it for ActiveResource calls and for hitting other external APIs.
Hope that helps.
On Wed, Jun 24, 2009 at 2:37 PM, TomRossi7 [email protected] wrote:
Tom
–
Christopher W.
[email protected]
612.424.9880
On Wed, Jun 24, 2009 at 2:37 PM, TomRossi7[email protected] wrote:
I’m trying to set up testing on my ActiveResource project. The
HttpMock appears to be what I want, but whenever I use the code in the
“documentation”, I get the error
NameError: uninitialized constant ActiveResource::HttpMock
Is there something I need to do to enable HttpMock testing?
require ‘active_resource/http_mock’ first 
jeremy
Oh wow. That was easy. Thanks Jeremy!
p.s. Did you find that documented somewhere?