Sha256: 737a3c870463a1c3681da0760a431046b9afa5f90bc77384417fb642205525fc

Contents?: true

Size: 383 Bytes

Versions: 1

Compression:

Stored size: 383 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

describe DispatchRider::Registrars::NotificationService do
  subject do
    described_class.new
  end

  describe "#value" do
    it "returns the value for the key/value pair while registering a notification service" do
      expect(subject.value(:aws_sns)).to be_a(DispatchRider::NotificationServices::AwsSns)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dispatch-rider-2.2.0 spec/lib/dispatch-rider/registrars/notification_service_spec.rb