Skip to content

Commit

Permalink
Add specs for attributes comparison (based on latest Equalizer gem wo…
Browse files Browse the repository at this point in the history
…rking version)
  • Loading branch information
novikserg committed Jul 19, 2015
1 parent 8d8755f commit 5f33f81
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions spec/unit/virtus/attribute/comparison_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
require 'spec_helper'

describe Virtus::Attribute, '#== (defined by including Virtus::Equalizer)' do
let(:attribute) { described_class.build(String, :name => :name) }

# Currently that's the way it works and it happens because default_value objects
# don't have equalizer, resulting in attributes object mismatch.
# This behavior (and a spec) will need a change in future.
it 'returns false when attributes have same type and options' do
equal_attribute = described_class.build(String, :name => :name)
expect(attribute == equal_attribute).to be_falsey
end

it 'returns false when attributes have different type' do
different_attribute = described_class.build(Integer, :name => :name)
expect(attribute == different_attribute).to be_falsey
end

it 'returns false when attributes have different options' do
different_attribute = described_class.build(Integer, :name => :name_two)
expect(attribute == different_attribute).to be_falsey
end
end

0 comments on commit 5f33f81

Please sign in to comment.