Sha256: 289c63bcacc3b12f284e0d0c1f48394d2445709cad29b7c3be055e88d1f17588
Contents?: true
Size: 529 Bytes
Versions: 10
Compression:
Stored size: 529 Bytes
Contents
require 'spec_helper' describe Coercer::Object, '.to_hash' do subject { object.to_hash(value) } let(:object) { described_class.new } let(:value) { stub('value') } context 'when the value responds to #to_hash' do let(:coerced) { stub('coerced') } before do value.should_receive(:to_hash).with().and_return(coerced) end it { should be(coerced) } end context 'when the value does not respond to #to_hash' do specify { expect { subject }.to raise_error(UnsupportedCoercion) } end end
Version data entries
10 entries across 8 versions & 4 rubygems