Sha256: 2701aec036c3c715bf40cbaf63b3188bca7e966e4a981a45956bceec7536448e

Contents?: true

Size: 1 KB

Versions: 126

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: true

RSpec.describe :validate_inclusion do
  link :validate_inclusion, from: :ree_validator

  context "valid" do
    it {
      expect(validate_inclusion(1, [1, 2])).to eq(true)
      expect(validate_inclusion(1, Set.new([1, 2]))).to eq(true)
      expect(validate_inclusion(1, (1..2))).to eq(true)
    }
  end

  context "invalid" do
    it {
      expect {
        validate_inclusion(3, [1, 2])
      }.to raise_error(ReeValidator::ValidateInclusion::InclusionErr) do |e|
        expect(e.message).to eq("value should be one of [1, 2]")
      end
    }

    it {
      expect {
        validate_inclusion(3, Set.new([1, 2]))
      }.to raise_error(ReeValidator::ValidateInclusion::InclusionErr) do |e|
        expect(e.message).to eq("value should be one of [1, 2]")
      end
    }

    it {
      expect {
        validate_inclusion(3, (1..2), Class.new(StandardError).new("message"))
      }.to raise_error(StandardError) do |e|
        expect(e.message).to eq("message")
      end
    }
  end
end

Version data entries

126 entries across 126 versions & 1 rubygems

Version Path
ree_lib-1.1.1 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.1.0 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.124 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.123 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.122 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.121 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.120 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.119 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.118 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.117 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.116 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.115 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.114 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.113 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.112 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.111 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.110 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.109 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.108 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb
ree_lib-1.0.107 lib/ree_lib/packages/ree_validator/spec/ree_validator/functions/validate_inclusion_spec.rb