I hooked up MongoMapper with Sinatra and everything works fine except for the testing. I have Autotest with Rack Testing and Rspec installed. Whenever I run autotest, it tells me
/home/jason/ror/sbmongo/main.rb:11:in `<top (required)>': uninitialized constant
MongoMapper (NameError)
Here is the line of code it refers to in my main.rb file.
MongoMapper.database = 'testdb'
What is the problem and how could I fix this?
require 'mongo_mapper'? – Casper Jan 20 at 0:01spec_helper.rband still nothing. – jason328 Jan 20 at 0:09spec_helper.rbrequired beforemain.rbin themain_spec.rbfile? – iain Jan 20 at 5:46spec_helperis themain.rbfile. Sorry if that's not what you were asking, your question is confusing to me. – jason328 Jan 20 at 21:42main_spec.rbwill run specs formain.rb, and since thespec_helperis to be required by all the specs but not all the specs need to require all the project files, it makes sense to require the main.rb file in the main_spec.rb, not the spec_helper (but that's a separate point). Basically, you need to have required mongo_mapper before main.rb is required (or before any MongoMapper code is called in either main.rb or the specs), that's the most likely reason for the error. – iain Jan 22 at 0:35