Sha256: 40fbb64689c62662c4cd2e76d28a9a23f92fd3cbbb10ea3b257030cb3c8c4873

Contents?: true

Size: 817 Bytes

Versions: 102

Compression:

Stored size: 817 Bytes

Contents

require 'pact_broker/domain/index_item'

module PactBroker
  module Domain
    describe IndexItem do
      describe "#last_webhook_execution_date" do
        let(:webhook_execution_1) { double('webhook_execution', created_at: DateTime.new(2013)) }
        let(:webhook_execution_2) { double('webhook_execution', created_at: DateTime.new(2015)) }

        let(:webhook_executions) { [webhook_execution_1, webhook_execution_2] }

        before do
          allow(webhook_executions).to receive(:sort).and_return(webhook_executions)
        end

        subject { IndexItem.create(nil, nil, nil, true, nil, [], webhook_executions) }

        it "returns the created_at date of the last execution" do
          expect(subject.last_webhook_execution_date).to eq DateTime.new(2015)
        end
      end
    end
  end
end

Version data entries

102 entries across 102 versions & 1 rubygems

Version Path
pact_broker-2.79.1 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.79.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.78.1 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.78.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.77.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.76.2 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.76.1 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.76.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.75.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.74.1 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.74.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.73.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.72.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.71.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.70.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.69.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.68.1 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.68.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.67.0 spec/lib/pact_broker/domain/index_item_spec.rb
pact_broker-2.66.0 spec/lib/pact_broker/domain/index_item_spec.rb