Try to fix specs that are failing in jenkins

This commit is contained in:
Neil Lalonde
2013-06-27 17:23:06 -04:00
parent 1355c1e3b0
commit 8e50b49cf1
3 changed files with 51 additions and 13 deletions
+8
View File
@@ -0,0 +1,8 @@
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.to_s} is not within 1 second of #{expected_time}"
end
end