Sha256: e2a1ddb7cc889b1dfc554b1cbb6080210f2882b31a954c618f65b623b03fb7e2

Contents?: true

Size: 893 Bytes

Versions: 24

Compression:

Stored size: 893 Bytes

Contents

require "spec_helper"

describe Mongoid::Matchers::Gte do

  describe "#matches?" do

    context "when the value is larger" do

      let(:matcher) { Mongoid::Matchers::Gte.new(5) }

      it "returns true" do
        matcher.matches?("$gte" => 3).should be_true
      end

    end

    context "when the value is smaller" do

      let(:matcher) { Mongoid::Matchers::Gte.new(5) }

      it "returns false" do
        matcher.matches?("$gte" => 10).should be_false
      end

    end

    context "when the value is equal" do

      let(:matcher) { Mongoid::Matchers::Gte.new(5) }

      it "returns true" do
        matcher.matches?("$gte" => 5).should be_true
      end

    end

    context "when the value is nil" do

      let(:matcher) { Mongoid::Matchers::Gte.new(nil) }

      it "returns false" do
        matcher.matches?("$gte" => 5).should be_false
      end

    end

  end

end

Version data entries

24 entries across 24 versions & 3 rubygems

Version Path
mongoid-locomotive-2.0.0.beta9 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-pre-2.0.0.beta1 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-2.0.0.alpha spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.14 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.13 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.12 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.11 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.10 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.9 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.8 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.7 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-pre-2.0.0.pre spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.6 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.5 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.4 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.3 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.2 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.1 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.2.0 spec/unit/mongoid/matchers/gte_spec.rb
mongoid-1.1.4 spec/unit/mongoid/matchers/gte_spec.rb