Sha256: bba9841bc100a71c93ee4e2fb327b7f575d853ad78afa65a26fab9c0713f921f
Contents?: true
Size: 476 Bytes
Versions: 3
Compression:
Stored size: 476 Bytes
Contents
# frozen_string_literal: true module Sbmt module Pact module Matchers module V3 class Include < Sbmt::Pact::Matchers::Base def initialize(template) 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: "include", template: template) 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/include.rb |
sbmt-pact-0.12.1 | lib/sbmt/pact/matchers/v3/include.rb |
sbmt-pact-0.12.0 | lib/sbmt/pact/matchers/v3/include.rb |