Our web application works together with several web-services which we can't influence. After each workflow (tested with Selenium) a hook call to a web-service occurs. I would like to mock that server. Ideally, I want a HTTP server object which I can start and kill at will, and an URL dispatcher which would call certain subroutines in my test when called.
So far, I have found HTTP::Server::Simple
and HTTP::Server::Brick
and I've found the latter more appealing. Do you have any other insider tip?