Sha256: 149f8d8ca026180e962f68fb749261db419fa059b4917d3d7569f6a607a4d8ab
Contents?: true
Size: 367 Bytes
Versions: 19
Compression:
Stored size: 367 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' RSpec.describe ::Delayed::Plugins::Bugsnag do describe '#error' do it 'should not raise exception' do payload = Object.new payload.extend(described_class::Notify) expect do payload.error(double('job', id: 1, payload_object: nil), '') end.not_to raise_error end end end
Version data entries
19 entries across 19 versions & 1 rubygems