Sha256: f56085ff826dc8229e2ecff9545db4ef1293e577171c213dc05c154c3ad1ad7e

Contents?: true

Size: 637 Bytes

Versions: 3

Compression:

Stored size: 637 Bytes

Contents

# frozen_string_literal: true

module Sbmt
  module Pact
    module Matchers
      module V3
        class Time < Sbmt::Pact::Matchers::Base
          def initialize(format, template)
            raise MatcherInitializationError, "#{self.class}: #{format} should be an instance of String" unless template.is_a?(String)
            raise MatcherInitializationError, "#{self.class}: #{template} should be an instance of String" unless template.is_a?(String)

            super(spec_version: Sbmt::Pact::Matchers::PACT_SPEC_V3, kind: "time", template: template, opts: {format: format})
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sbmt-pact-0.12.2 lib/sbmt/pact/matchers/v3/time.rb
sbmt-pact-0.12.1 lib/sbmt/pact/matchers/v3/time.rb
sbmt-pact-0.12.0 lib/sbmt/pact/matchers/v3/time.rb