Sha256: e5e99bca2bbd97d3d5c7acc9d03348d7132cbe9f261bae331ce688d8a1c40e33

Contents?: true

Size: 533 Bytes

Versions: 1

Compression:

Stored size: 533 Bytes

Contents

# frozen_string_literal: true

require 'rails_helper'

RSpec.describe Article, '#findy' do
  context 'when a hash is given' do
    context 'when record is found' do
      let!(:record) { described_class.create id: 1 }
      let!(:hash)   { 'My' }

      it 'finds the record' do
        expect(described_class.findy(hash)).to eq record
      end
    end

    context 'when record is not found' do
      let!(:hash) { 'My' }

      it 'returns nil' do
        expect(described_class.findy(hash)).to be_nil
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
idy-1.1.0 spec/lib/idy/extension/findy_spec.rb