I am having a little bit of trouble testing a javascript file inside my rails application. I have this file inside my public directory because I want to serve it statically.
I am currently using jasminerice 0.0.9 to test all my other javascript files which are inside app/assets and those are seem to be working right.
When trying to test my public javascript file I am not being able to require it inside my test by doing:
#= require /public/myfile.js
Do anyone knows if it is possible to test my file inside my public directory with jasminerice or if there is any other way to test it?