Sha256: 0f40d02dfc0b0d060524428b98eb4be47fd3a9dd4104aefb7999c3a22b6abfce
Contents?: true
Size: 501 Bytes
Versions: 124
Compression:
Stored size: 501 Bytes
Contents
# frozen_string_literal: true RSpec.describe :beginning_of_week do link :beginning_of_week, from: :ree_datetime it { monday = beginning_of_week(DateTime.new(2022, 5, 25, 13, 50, 15), :monday) sunday = beginning_of_week(DateTime.new(2022, 5, 25, 13, 50, 15), :sunday) expect(monday).to eq(DateTime.new(2022, 5, 23, 0, 0, 0)) expect(sunday).to eq(DateTime.new(2022, 5, 22, 0, 0, 0)) } it { result = beginning_of_week(:monday) expect(result).to be_a(DateTime) } end
Version data entries
124 entries across 124 versions & 1 rubygems