Sha256: 0b0538a6709f8f83574c0d77442eba1bc81738c10fc749f4c814a26d71704f0c
Contents?: true
Size: 494 Bytes
Versions: 18
Compression:
Stored size: 494 Bytes
Contents
require 'spec_helper' describe Virtus::Coercion, '#[]' do %w[ Decimal Date DateTime FalseClass Integer Float Hash String Symbol Time TrueClass ].each do |class_name| context "with #{class_name.inspect}" do subject { described_class[class_name] } it { should == described_class.const_get(class_name) } end end context 'with a name of a class not defined in Coercion' do subject { described_class['Set'] } it { should == Virtus::Coercion::Object } end end
Version data entries
18 entries across 18 versions & 2 rubygems