f0391c2517
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
15 lines
331 B
Ruby
15 lines
331 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec::Matchers.define :be_like_time do |expected|
|
|
match do |actual|
|
|
expect(actual).to be_within(1.second).of(expected)
|
|
end
|
|
|
|
description do
|
|
"within one second of #{expected}"
|
|
end
|
|
|
|
failure_message do |actual|
|
|
"expected #{actual} to be within one second of #{expected}"
|
|
end
|
|
end
|