Topic: ActiveResource Test Fixtures
Does anyone know a way to simulate test fixtures with ActiveResource?
I have an application that uses ActiveResource to consume external web services. I'd like to be able to test my application without needing the external web services to be operational. Most importantly, I'd like to develop the erb for my views without needing to connect to any external web services.
When using ActiveRecord, I typically seed the DB with sample data. This allows me to develop the views. I want a similar workflow with ActiveResource without needing to actually communicate to an external service.