Sha256: 662ac4b7c75137cd0a8e8bbc00a09ae5f5d58610c4f06446e399fc927786e23a

Contents?: true

Size: 928 Bytes

Versions: 3

Compression:

Stored size: 928 Bytes

Contents

require 'spec_helper'

describe Virtus::Attribute::Boolean, '#coerce' do
  subject { object.coerce(input) }

  let(:object)  { described_class.build('Boolean', options) }
  let(:options) { {} }

  context 'when strict is turned off' do
    context 'with a truthy value' do
      let(:input) { 1 }

      it { should be(true) }
    end

    context 'with a falsy value' do
      let(:input) { 0 }

      it { should be(false) }
    end
  end

  context 'when strict is turned on' do
    let(:options) { { :strict => true } }

    context 'with a coercible input' do
      let(:input) { 1 }

      it { should be(true) }
    end

    context 'with a non-coercible input' do
      let(:input) { 'no idea if true or false' }

      it 'raises coercion error' do
        expect { subject }.to raise_error(
          Virtus::CoercionError,
          /Failed to coerce "no idea if true or false"/
        )
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
virtus-1.0.3 spec/unit/virtus/attribute/boolean/coerce_spec.rb
virtus-1.0.2 spec/unit/virtus/attribute/boolean/coerce_spec.rb
virtus-1.0.1 spec/unit/virtus/attribute/boolean/coerce_spec.rb