How can I get a rails server to use the same databse that cucumber uses during a test?
- by James
The cucumber test first makes an entry in the database and posts a form to a second server. This second server does some processing in background and then hits the first app (where the test is being run) with some data that the cucumber test needs to know about.
I've tried running the main server via script/server and script/server -e test while…