Running RSpec on Google App Engine via JRuby
- by Carl
I'm trying to write some tests (RSpec) against the AppEngine and its datastore. I've tried to load the environment and tests via:
appcfg.rb run -S spec app/tests/
And I end up with the following error:
spec:19: undefined method `bin_path'
for Gem:Module (NoMethodError)
I can run non-appengine specs just fine by running:
spec app/tests/
Any suggestions on how to get RSpec up and running with JRuby and Google App Engine would be greatly appreciated. Thank you.