Sha256: d45cd0f2fe888ba0638d46fa3b72d4edcee6f21115d1db17f7f2a8f099c63ffd

Contents?: true

Size: 317 Bytes

Versions: 124

Compression:

Stored size: 317 Bytes

Contents

# frozen_string_literal: true

RSpec.describe :next_week do
  link :next_week, from: :ree_datetime

  it {
    result  = next_week(DateTime.new(2022, 5, 23, 13, 15, 10))

    expect(result).to eq(DateTime.new(2022, 5, 30, 13, 15, 10))
  }

  it {
    result = next_week()

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

Version data entries

124 entries across 124 versions & 1 rubygems

Version Path
ree_lib-1.0.3 lib/ree_lib/packages/ree_datetime/spec/ree_datetime/functions/next_week_spec.rb
ree_lib-1.0.2 lib/ree_lib/packages/ree_datetime/spec/ree_datetime/functions/next_week_spec.rb
ree_lib-1.0.1 lib/ree_lib/packages/ree_datetime/spec/ree_datetime/functions/next_week_spec.rb
ree_lib-1.0.0 lib/ree_lib/packages/ree_datetime/spec/ree_datetime/functions/next_week_spec.rb