In need to write unit tests that uses old node-oracle library and I am looking for options to run tests w/o real database.
- Is there in-memory fake database implementations (such as mockcouch for CouchDB or TingoDB for MongoDB)?
- Is there real world success stories to use Sinon.Js to mock database?
- Should I now rewrite modules to use with current supported library to make this 2 options available or better/simpler implemented?
- Should I not write unit-tests now and wait until options 1) and 2) available are?