Sha256: b36d7789c149769965c83184aba125fc6e415fa217bffe0141ea598de030349e

Contents?: true

Size: 775 Bytes

Versions: 4

Compression:

Stored size: 775 Bytes

Contents

require "spec_helper"

describe Mongoid::Extensions::FalseClass do

  describe "#__sortable__" do

    it "returns 0" do
      expect(false.__sortable__).to eq(0)
    end
  end

  describe "#is_a?" do

    context "when provided a Boolean" do

      it "returns true" do
        expect(false.is_a?(Boolean)).to be_true
      end
    end

    context "when provided a FalseClass" do

      it "returns true" do
        expect(false.is_a?(FalseClass)).to be_true
      end
    end

    context "when provided a TrueClass" do

      it "returns false" do
        expect(false.is_a?(TrueClass)).to be_false
      end
    end

    context "when provided an invalid class" do

      it "returns false" do
        expect(false.is_a?(String)).to be_false
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
sepastian-mongoid-rails4-4.0.1.alpha spec/mongoid/extensions/false_class_spec.rb
sepastian-mongoid-rails4-4.0.0.alpha spec/mongoid/extensions/false_class_spec.rb
mongoid_heroku_stable-4.0.0 spec/mongoid/extensions/false_class_spec.rb
mongoid_rails4-4.0.0 spec/mongoid/extensions/false_class_spec.rb