Sha256: 6d788f602b926a0214ed0b8fc4d5aa07788f678f32c6feee55e151af27c7668d

Contents?: true

Size: 508 Bytes

Versions: 125

Compression:

Stored size: 508 Bytes

Contents

# frozen_string_literal: true

RSpec.describe :end_of_month do
  link :end_of_month, from: :ree_date

  it {
    may = end_of_month(Date.new(2022, 5, 23))
    leap_february = end_of_month(Date.new(2008, 2, 3))
    regular_february = end_of_month(Date.new(2022, 2, 3))

    expect(may).to eq(Date.new(2022, 5, 31))
    expect(leap_february).to eq(Date.new(2008, 2, 29))
    expect(regular_february).to eq(Date.new(2022, 2, 28))
  }

  it {
    result = end_of_month()

    expect(result).to be_a(Date)
  }
end

Version data entries

125 entries across 125 versions & 1 rubygems

Version Path
ree_lib-1.0.4 lib/ree_lib/packages/ree_date/spec/ree_date/functions/end_of_month_spec.rb
ree_lib-1.0.3 lib/ree_lib/packages/ree_date/spec/ree_date/functions/end_of_month_spec.rb
ree_lib-1.0.2 lib/ree_lib/packages/ree_date/spec/ree_date/functions/end_of_month_spec.rb
ree_lib-1.0.1 lib/ree_lib/packages/ree_date/spec/ree_date/functions/end_of_month_spec.rb
ree_lib-1.0.0 lib/ree_lib/packages/ree_date/spec/ree_date/functions/end_of_month_spec.rb