Sha256: b267a082c13ff78b666dec2a075c26074480acc593bc9fe701e56593c68fb60f

Contents?: true

Size: 1.6 KB

Versions: 10

Compression:

Stored size: 1.6 KB

Contents

# coding: utf-8

require 'spec_helper'

RSpec.describe TTY::Table::Row, '#==' do
  let(:attributes) { [:id] }
  let(:data) { ['1'] }
  let(:object) { described_class.new(data, attributes) }

  subject { object == other }

  context 'with the same object' do
    let(:other) { object }

    it { is_expected.to eql(true) }

    it 'is symmetric' do
      is_expected.to eql(other == object)
    end
  end

  context 'with an equivalent object' do
    let(:other) { object.dup }

    it { is_expected.to eql(true) }

    it 'is symmetric' do
      is_expected.to eql(other == object)
    end
  end

  context 'with an equivalent object of subclass' do
    let(:other) { Class.new(described_class).new(data, attributes: attributes) }

    it { is_expected.to eql(true) }

    it 'is symmetric' do
      is_expected.to eql(other == object)
    end
  end

  context 'with an object having a different attributes' do
    let(:other_attributes) { [:text] }
    let(:other) { described_class.new(data, attributes: other_attributes) }

    it { is_expected.to eql(true) }

    it 'is symmetric' do
      is_expected.to eql(other == object)
    end
  end

  context 'with an object having a different attributes' do
    let(:other_data) { [2] }
    let(:other) { described_class.new(other_data, attributes: attributes) }

    it { is_expected.to eql(false) }

    it 'is symmetric' do
      is_expected.to eql(other == object)
    end
  end

  context 'with an equivalent object responding to_ary' do
    let(:other) { data }

    it { is_expected.to eql(true) }

    it 'is symmetric' do
      is_expected.to eql(other == object)
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tty-table-0.10.0 spec/unit/row/equality_spec.rb
tty-table-0.9.0 spec/unit/row/equality_spec.rb
tty-table-0.8.0 spec/unit/row/equality_spec.rb
tty-table-0.7.0 spec/unit/row/equality_spec.rb
tty-table-0.6.0 spec/unit/row/equality_spec.rb
tty-table-0.5.0 spec/unit/row/equality_spec.rb
tty-table-0.4.0 spec/unit/row/equality_spec.rb
tty-table-0.3.0 spec/unit/row/equality_spec.rb
tty-table-0.2.0 spec/unit/row/equality_spec.rb
tty-table-0.1.0 spec/unit/row/equality_spec.rb