Created
September 4, 2012 07:55
-
-
Save rojotek/3618210 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
| RSpec::Matchers.define :be_less_than do |expected| | |
| match do |actual| | |
| result = actual<expected | |
| result &&=actual>@low_value unless @low_value.nil? | |
| result | |
| end | |
| chain :and_greater_than do |low_value| | |
| @low_value=low_value | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment