Sha256: 984a0f301a47651c87eaf7fcd504d7991c8b5afbfcf43fbc0defca84bd232f25

Contents?: true

Size: 765 Bytes

Versions: 5

Compression:

Stored size: 765 Bytes

Contents

require 'spec_helper'

describe Virtus::Coercion::Hash, '.to_time' do
  subject { object.to_time(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(Time) }

    it 'uses the Time now to populate the segments' do
      should eql(time_now)
    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(Time) }

    it { should eql(Time.local(2011, 1, 1, 1, 1, 1)) }
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
virtus-0.0.10 spec/unit/virtus/coercion/hash/class_methods/to_time_spec.rb
virtus-0.0.9 spec/unit/virtus/coercion/hash/class_methods/to_time_spec.rb
virtus-0.0.8 spec/unit/virtus/coercion/hash/class_methods/to_time_spec.rb
virtus-0.0.7 spec/unit/virtus/coercion/hash/class_methods/to_time_spec.rb
virtus-0.0.6 spec/unit/virtus/coercion/hash/class_methods/to_time_spec.rb