spec/aws/active_job/sqs/poller_spec.rb [40:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            expect(Aws::SQS::QueuePoller).to receive(:new).and_return(queue_poller)

            expect(queue_poller).to receive(:poll).with(
              {
                skip_delete: true,
                max_number_of_messages: 2, # from test app config file
                visibility_timeout: 360 # from options
              }
            )

            poller.run
          end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/aws/active_job/sqs/poller_spec.rb [65:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            expect(Aws::SQS::QueuePoller).to receive(:new).and_return(queue_poller)

            expect(queue_poller).to receive(:poll).with(
              {
                skip_delete: true,
                max_number_of_messages: 2, # from queue config in app config file
                visibility_timeout: 360
              }
            )

            poller.run
          end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



