Sha256: fbfff70f9f02dba699b4a3edbfbe8a0f809aaa43308687826d3c21286e5bfbc8

Contents?: true

Size: 818 Bytes

Versions: 1

Compression:

Stored size: 818 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

class Sentry
  # mock Sentry
end

RSpec.describe UniformNotifier::SentryNotifier do
  it 'should not notify sentry' do
    expect(UniformNotifier::SentryNotifier.out_of_channel_notify(title: 'notify sentry')).to be_nil
  end

  it 'should notify sentry' do
    expect(Sentry).to receive(:capture_exception).with(UniformNotifier::Exception.new('notify sentry'), {})

    UniformNotifier.sentry = true
    UniformNotifier::SentryNotifier.out_of_channel_notify(title: 'notify sentry')
  end

  it 'should notify sentry' do
    expect(Sentry).to receive(:capture_exception).with(UniformNotifier::Exception.new('notify sentry'), foo: :bar)

    UniformNotifier.sentry = { foo: :bar }
    UniformNotifier::SentryNotifier.out_of_channel_notify('notify sentry')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
uniform_notifier-1.14.1 spec/uniform_notifier/sentry_spec.rb