Sha256: afc8c0339be7ada6b42614b5f569925ef53858218958b839de0e6faa67dfea23
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe Acfs::Resource::Attributes::DateTime do let(:type) { Acfs::Resource::Attributes::DateTime.new } describe '#cast' do subject(:cast) { type.cast value } context 'with nil' do let(:value) { nil } it { expect(cast).to be_nil } end context 'with empty string' do let(:value) { '' } it { expect(cast).to be_nil } end context 'with blank string' do let(:value) { " \t" } it { expect(cast).to be_nil } end context 'with DateTime' do let(:value) { DateTime.now } it { expect(cast).to eq value } end context 'with Time' do let(:value) { Time.now } it { expect(cast).to eq value.to_datetime } end context 'with Date' do let(:value) { Date.today } it { expect(cast).to eq value.to_datetime } end context 'with ISO8601' do let(:value) { DateTime.now.iso8601 } it { expect(cast.iso8601).to eq value } end context 'with invalid string' do let(:value) { 'qwe123' } it { expect { cast }.to raise_error ArgumentError } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acfs-2.0.0 | spec/acfs/resource/attributes/date_time_spec.rb |