Sha256: 8b11cb35c5b1bb0983699ee220415e79c5b9e03e8b355b101e376f695b812e15
Contents?: true
Size: 386 Bytes
Versions: 124
Compression:
Stored size: 386 Bytes
Contents
# frozen_string_literal: true RSpec.describe :next_day do link :next_day, from: :ree_date it { result = next_day(Date.new(2020, 12, 2)) leap_year_day = next_day(Date.new(2020, 2, 28)) expect(result).to eq(Date.new(2020, 12, 3)) expect(leap_year_day).to eq(Date.new(2020, 2, 29)) } it { result = next_day() expect(result).to eq(Date.today + 1) } end
Version data entries
124 entries across 124 versions & 1 rubygems