Sha256: 36e4c33995edcb4de460dbc8266649cbe0d9c2c3c0ef4b8b89c64e6f2526bf62
Contents?: true
Size: 283 Bytes
Versions: 126
Compression:
Stored size: 283 Bytes
Contents
# frozen_string_literal: true RSpec.describe :next_week do link :next_week, from: :ree_date it { result = next_week(Date.new(2020, 12, 2)) expect(result).to eq(Date.new(2020, 12, 9)) } it { result = next_week() expect(result).to eq(Date.today + 7) } end
Version data entries
126 entries across 126 versions & 1 rubygems