Sha256: c6d42f9db0d5594e52ba7e241d181e922daf90ae042ad1c6fac1e713ed7d34bb
Contents?: true
Size: 321 Bytes
Versions: 124
Compression:
Stored size: 321 Bytes
Contents
# frozen_string_literal: true RSpec.describe :next_month do link :next_month, from: :ree_datetime it { result = next_month(DateTime.new(2022, 5, 23, 13, 15, 10)) expect(result).to eq(DateTime.new(2022, 6, 23, 13, 15, 10)) } it { result = next_month() expect(result).to be_a(DateTime) } end
Version data entries
124 entries across 124 versions & 1 rubygems