spec/elastic_apm/spies/sns_spec.rb [31:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        with_agent do
          ElasticAPM.with_transaction do
            client.publish(
              topic_arn: 'arn:aws:sns:us-east-1:123456789012:MyTopic',
              message: 'some message'
            )
          end
        end

        span = @intercepted.spans.first

        expect(span.name).to eq('SNS PUBLISH to MyTopic')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/elastic_apm/spies/sns_spec.rb [73:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          with_agent do
            ElasticAPM.with_transaction do
              client.publish(
                topic_arn: 'arn:aws:sns:us-east-1:123456789012:MyTopic',
                message: 'some message'
              )
            end
          end

          span = @intercepted.spans.first

          expect(span.name).to eq('SNS PUBLISH to MyTopic')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



