Sha256: e757c88edbb9b573166b63987d6c1c069a311e99de242bcad6a2135a6472bf20

Contents?: true

Size: 1.2 KB

Versions: 2

Compression:

Stored size: 1.2 KB

Contents

require_relative "helper"
require_relative "../lib/ohm/scope"

class Post < Ohm::Model
  set :comments, :Comment
end

module Finders
  def rejected
    find(status: "rejected")
  end
end

class Comment < Ohm::Model
  include Ohm::Scope

  attribute :status
  index :status

  scope do
    def approved
      find(status: "approved")
    end
  end

  scope Finders
end

test "has a predefined scope" do
  assert defined?(Comment::DefinedScopes)
end

test "allows custom methods for the defined scopes" do
  post = Post.create
  comment = Comment.create(status: "approved")
  post.comments.add(comment)

  assert post.comments.approved.is_a?(Ohm::Set)
  assert post.comments.approved.include?(comment)
end

test "allows custom methods to be included from a module" do
  post = Post.create
  comment = Comment.create(status: "rejected")
  post.comments.add(comment)

  assert post.comments.rejected.is_a?(Ohm::Set)
  assert post.comments.rejected.include?(comment)
end

test "works with the main Comment.all collection as well" do
  approved = Comment.create(status: "approved")
  rejected = Comment.create(status: "rejected")

  assert Comment.all.approved.include?(approved)
  assert Comment.all.rejected.include?(rejected)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ohm-contrib-3.0.0 test/scope.rb
ohm-contrib-2.2.0 test/scope.rb