获取此错误
cannot load such file -- mongoid
尝试运行RSpec测试时。
我在另一个终端(mongod
)
使用ruby 2.0
我尝试包含gem 'moped'
和bundle
d,但却遇到了同样的错误。
尝试找出如何解决此错误并运行我的测试。
这是一个我已经分叉并正在尝试更新的开源项目。
测试从:
开始require 'spec_helper'
begin
require 'will_paginate/mongoid' # <-- this is the issue
rescue LoadError => error
warn "Error running Sequel specs: #{error.message}"
mongoid_loaded = false
else
Mongoid.database = Mongo::Connection.new.db('will_paginate_test')
class MongoidModel
include Mongoid::Document
end
mongoid_loaded = true
end
describe...
我评论了require 'will_paginate/mongoid'
但我接着uninitialized constant Mongoid (NameError)