Sha256: 875c4ff50ef2b87bac666cb959bfea9c6bc879ee043931e2361870728349d051

Contents?: true

Size: 1.18 KB

Versions: 5

Compression:

Stored size: 1.18 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 { -> { type.cast value } }

    context 'with nil' do
      let(:value) { nil }
      it { expect(subject.call).to eq nil }
    end

    context 'with empty string' do
      let(:value) { '' }
      it { expect(subject.call).to eq nil }
    end

    context 'with blank string' do
      let(:value) { "  \t" }
      it { expect(subject.call).to eq nil }
    end

    context 'with DateTime' do
      let(:value) { DateTime.now }
      it { expect(subject.call).to eq value }
    end

    context 'with Time' do
      let(:value) { Time.now }
      it { expect(subject.call).to eq value.to_datetime }
    end

    context 'with Date' do
      let(:value) { Date.today }
      it { expect(subject.call).to eq value.to_datetime }
    end

    context 'with ISO8601' do
      let(:value) { DateTime.now.iso8601 }
      it { expect(subject.call.iso8601).to eq value }
    end

    context 'with invalid string' do
      let(:value) { 'qwe123' }
      it { is_expected.to raise_error ArgumentError }
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
acfs-1.6.0 spec/acfs/resource/attributes/date_time_spec.rb
acfs-1.5.1 spec/acfs/resource/attributes/date_time_spec.rb
acfs-1.5.0 spec/acfs/resource/attributes/date_time_spec.rb
acfs-1.4.0 spec/acfs/resource/attributes/date_time_spec.rb
acfs-1.3.4 spec/acfs/resource/attributes/date_time_spec.rb