Sha256: 72e65fd533299b66fb19d13fb8ec0efaa4b050c04953e8db65123da5807fa8cc
Contents?: true
Size: 799 Bytes
Versions: 5
Compression:
Stored size: 799 Bytes
Contents
require 'spec_helper' describe Virtus::Coercion::Hash, '.to_datetime' do subject { object.to_datetime(hash) } let(:object) { described_class } context 'when time segments are missing' do let(:time_now) { Time.local(2011, 1, 1) } let(:hash) { {} } before do now = time_now Time.stub!(:now).and_return(now) # freeze time end it { should be_instance_of(DateTime) } it 'uses the Time now to populate the segments' do should eql(DateTime.new(2011, 1, 1)) end end context 'when time segments are populated' do let(:hash) { { :year => 2011, :month => 1, :day => 1, :hour => 1, :min => 1, :sec => 1 } } it { should be_instance_of(DateTime) } it { should eql(DateTime.new(2011, 1, 1, 1, 1, 1)) } end end
Version data entries
5 entries across 5 versions & 1 rubygems