Add spec helper that waits for the next second to begin (instead of sleeping for a whole second)

This commit is contained in:
galfert 2012-09-26 19:47:22 +02:00
parent 52b32fb396
commit 4d01144bf4
2 changed files with 6 additions and 1 deletions

View File

@ -122,7 +122,7 @@ describe "Directories" do
end
it "updates the timestamp of the directory" do
sleep 1
wait_a_second
put "/jimmy/tasks/home/trash", "take out the trash"
@directory.reload

View File

@ -43,4 +43,9 @@ def purge_all_buckets
end
end
def wait_a_second
now = Time.now.to_i
while Time.now.to_i == now; end
end
alias context describe