Anmo acts as a mock api and can be used to store arbitrary pieces of data for integration testing flaky APIs. This is generally not a good idea, but where you can't use VCR anmo is now an option.
require "anmo"
Thread.new { Anmo.launch_server }
Anmo.create_request({
:path => "/lookatmyhorse",
:body => "my horse is amazing"
})
curl http://localhost:8787/lookatmyhorse
my horse is amazing
If you get 'Dalli::RingError: No server available' when running test, it could be because you don't have a local instance of memcached running. See: