Created
November 2, 2011 18:45
-
-
Save nowk/1334493 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark' | |
RSpec::Matchers.define :take_less_than do |n| | |
chain :seconds do; end | |
match do |block| | |
@elapsed = Benchmark.realtime do | |
block.call | |
end | |
@elapsed <= n | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment