Sha256: 9aec751149130d2c6ff3e31595976fb9ccac20b01d4624df51027578155356d3

Contents?: true

Size: 610 Bytes

Versions: 1

Compression:

Stored size: 610 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) { Article.create id: 1 }
      let!(:hash)   { 'My' }

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

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

      it 'raises' do
        message = %(Couldn't find User with 'idy'="My")

        expect { Article.findy!(hash) }.to raise_error ActiveRecord::RecordNotFound, message
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
idy-1.0.0 spec/lib/idy/extension/findy_bump_spec.rb