ruby-on-rails,ruby,backbone.js,mocha,konacha
I figured this out. The problem was that it was not finding the file under app/assets/javascripts/ correctly. I needed to do this at the top of the spec/javascripts/app_specific/itapp/models/post_spec.js file: //= require app_specific/itapp/models/post Once I did that it was able to find the associated code that I am testing against. I...