Sha256: fbb662afccfdac0d9dc29b4ec7a95416db89459b8358739ceec3662be296b353
Contents?: true
Size: 287 Bytes
Versions: 126
Compression:
Stored size: 287 Bytes
Contents
# frozen_string_literal: true RSpec.describe :next_month do link :next_month, from: :ree_date it { result = next_month(Date.new(2020, 12, 2)) expect(result).to eq(Date.new(2021, 1, 2)) } it { result = next_month() expect(result).to eq(Date.today >> 1) } end
Version data entries
126 entries across 126 versions & 1 rubygems