Skip to content

Instantly share code, notes, and snippets.

@nowk
Created November 2, 2011 18:45
Show Gist options
  • Save nowk/1334493 to your computer and use it in GitHub Desktop.
Save nowk/1334493 to your computer and use it in GitHub Desktop.
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