0

我用范围定义了以下用户类:

class User
  include Mongoid::Document
  include Mongoid::Timestamps
  include Mongoid::Search

  # SCOPES
  scope :all_admins, where( role: :admin)
  scope :recents, order_by(created_at: :desc)
  scope :olders, order_by(created_at: :asc)

  field :role, type: Symbol
end

如果我使用以下 rspec 测试:

describe 'scopes' do
  let(:admin1)            { Fabricate(:admin) }
  let(:admin2)               { Fabricate(:admin) }

  describe 'recents' do
    it 'should return the admins from most recent to older' do
      User.all_admins.recents.should eq([admin1, admin2])
    end
  end
end

我收到以下失败消息:

got: #<Mongoid::Criteria
  selector: {"role"=>:admin},
  options:  {:sort=>{"created_at"=>-1}},
  class:    User,
  embedded: false>

那么我该如何测试这个范围呢?

4

1 回答 1

1

Mongoid 延迟加载,执行:

User.all_admins.recents.to_a.should eq([admin1, admin2])

旁注:

  • 你应该将你的作用域创建为 lambdas,它很快就会成为 Rails4 的规范

  • 我在 mongo 中遇到了符号类型的问题(在迁移期间),我宁愿使用字符串

  • 我很确定您的测试将失败,因为您的对象不是在 db 中创建的(在let调用它之前不会评估,替换为let!

于 2013-02-21T09:21:11.763 回答