1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
# encoding: utf-8
require 'spec_helper'
describe Equalizer, '.new' do
let(:object) { described_class }
let(:name) { 'User' }
let(:klass) { ::Class.new }
context 'with no keys' do
subject { object.new }
before do
# specify the class #name method
allow(klass).to receive(:name).and_return(name)
klass.send(:include, subject)
end
let(:instance) { klass.new }
it { should be_instance_of(object) }
it { should be_frozen }
it 'defines #hash and #inspect methods dynamically' do
expect(subject.public_instance_methods(false).map(&:to_s).sort)
.to eql(%w[hash inspect])
end
describe '#eql?' do
context 'when the objects are similar' do
let(:other) { instance.dup }
it { expect(instance.eql?(other)).to be(true) }
end
context 'when the objects are different' do
let(:other) { double('other') }
it { expect(instance.eql?(other)).to be(false) }
end
end
describe '#==' do
context 'when the objects are similar' do
let(:other) { instance.dup }
it { expect(instance == other).to be(true) }
end
context 'when the objects are different' do
let(:other) { double('other') }
it { expect(instance == other).to be(false) }
end
end
describe '#hash' do
it 'has the expected arity' do
expect(klass.instance_method(:hash).arity).to be(0)
end
it { expect(instance.hash).to eql([klass].hash) }
end
describe '#inspect' do
it 'has the expected arity' do
expect(klass.instance_method(:inspect).arity).to be(0)
end
it { expect(instance.inspect).to eql('#<User>') }
end
end
context 'with keys' do
subject { object.new(*keys) }
let(:keys) { %i[firstname lastname].freeze }
let(:firstname) { 'John' }
let(:lastname) { 'Doe' }
let(:instance) { klass.new(firstname, lastname) }
let(:klass) do
::Class.new do
attr_reader :firstname, :lastname
private :firstname, :lastname
def initialize(firstname, lastname)
@firstname, @lastname = firstname, lastname
end
end
end
before do
# specify the class #inspect method
allow(klass).to receive_messages(name: nil, inspect: name)
klass.send(:include, subject)
end
it { should be_instance_of(object) }
it { should be_frozen }
it 'defines #hash and #inspect methods dynamically' do
expect(subject.public_instance_methods(false).map(&:to_s).sort)
.to eql(%w[hash inspect])
end
describe '#eql?' do
context 'when the objects are similar' do
let(:other) { instance.dup }
it { expect(instance.eql?(other)).to be(true) }
end
context 'when the objects are different' do
let(:other) { double('other') }
it { expect(instance.eql?(other)).to be(false) }
end
end
describe '#==' do
context 'when the objects are similar' do
let(:other) { instance.dup }
it { expect(instance == other).to be(true) }
end
context 'when the objects are different type' do
let(:other) { klass.new('Foo', 'Bar') }
it { expect(instance == other).to be(false) }
end
context 'when the objects are from different type' do
let(:other) { double('other') }
it { expect(instance == other).to be(false) }
end
end
describe '#hash' do
it 'returns the expected hash' do
expect(instance.hash)
.to eql([firstname, lastname, klass].hash)
end
end
describe '#inspect' do
it 'returns the expected string' do
expect(instance.inspect)
.to eql('#<User firstname="John" lastname="Doe">')
end
end
end
end
|