2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
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
|