This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/spec/support/time_matcher.rb
2015-01-05 13:04:23 -03:00

8 lines
260 B
Ruby

RSpec::Matchers.define :be_within_one_second_of do |expected_time|
match do |actual_time|
(actual_time - expected_time).abs < 1
end
failure_message_for_should do |actual_time|
"#{actual_time} is not within 1 second of #{expected_time}"
end
end