mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
8 lines
No EOL
259 B
Ruby
8 lines
No EOL
259 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 |