Sha256: 7a9b22be6858bf3eaeb0a89c1e119484e2dc3bc650161c8e7b46f015a15c85aa

Contents?: true

Size: 230 Bytes

Versions: 1

Compression:

Stored size: 230 Bytes

Contents

module ValidatorExpectations
  RSpec::Matchers.define :be_available do
    match do |actual|
      actual.available?
    end
  end

  RSpec::Matchers.define :be_valid do
    match do |actual|
      actual.valid?
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cert_validator-0.0.1 spec/support/validator_expectations.rb