For integration testing, I would like to run my automated tests against real Corona API’s instead of mocks. Therefore I need to run my test suite inside Corona Simulator.
Trying to do this with Busted (a popular Lua testing framework) I run into the issue of not having the dependencies inside the Simulator, that Busted needs. I also cannot add them to my source code, as Busted expects them to be in the search path, and manipulation it does not work in Corona.
Has anyone experiences with running Busted tests inside Simulator and has a setup script to share?