收到此错误
cannot load such file -- mongoid
尝试运行 RSpec 测试时。
我在另一个终端运行 mongo ( mongod
)
使用红宝石 2.0
我尝试包括gem 'moped'
and 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)