Sha256: 47e29c78a8fd03b8e75d4eeeea879dc7d321ee97c096c30f9314c52b3921359d

Contents?: true

Size: 489 Bytes

Versions: 14

Compression:

Stored size: 489 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Axiom::Types::Type, '.include?' do
  subject { object.include?(value) }

  let(:object) do
    Class.new(described_class) do
      constraint(->(object) { !object.nil? })
    end
  end

  context 'when the value matches the type constraint' do
    let(:value) { Object.new }

    it { should be(true) }
  end

  context 'when the value does not match the type constraint' do
    let(:value) { nil }

    it { should be(false) }
  end
end

Version data entries

14 entries across 12 versions & 4 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/axiom-types-0.1.1/spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
axiom-types-0.1.1 spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
axiom-types-0.1.0 spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
axiom-types-0.0.5 spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
axiom-types-0.0.4 spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb
axiom-types-0.0.3 spec/unit/axiom/types/type/class_methods/include_predicate_spec.rb