'无法使用带有ruby 2的rspec加载这样的文件 - mongoid'

时间:2013-11-03 14:19:01

标签: ruby mongodb rspec mongoid

获取此错误

cannot load such file -- mongoid

尝试运行RSpec测试时。

我在另一个终端(mongod

中运行了mongo

使用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)

0 个答案:

没有答案