Sha256: e8aa6ef0c2780c79e1fc4f1004368c20272c01b36c45ad57961a6ae685ede9eb
Contents?: true
Size: 447 Bytes
Versions: 18
Compression:
Stored size: 447 Bytes
Contents
require 'spec_helper' describe Virtus::Coercion::Integer, '.to_boolean' do subject { object.to_boolean(fixnum) } let(:object) { described_class } context 'when the fixnum is 1' do let(:fixnum) { 1 } it { should be(true) } end context 'when the fixnum is 0' do let(:fixnum) { 0 } it { should be(false) } end context 'when the fixnum is not 1 or 0' do let(:fixnum) { -1 } it { should be(-1) } end end
Version data entries
18 entries across 18 versions & 2 rubygems