CARVIEW |
We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]
Every repository with this icon (

Every repository with this icon (

Fork of gregwebs/rspec-multi-matchers | |
Description: | rspec custom matchers - each, enum, and match_in_order |
Clone URL: |
git://github.com/drnic/rspec-multi-matchers.git
Give this clone URL to anyone.
git clone git://github.com/drnic/rspec-multi-matchers.git
|
name | age | message | |
---|---|---|---|
![]() |
History.txt | Tue Nov 18 01:33:58 -0800 2008 | refactored projects into a RubyGem [drnic] |
![]() |
Manifest.txt | Tue Nov 18 01:49:19 -0800 2008 | update manifest [drnic] |
![]() |
README.rdoc | Tue Nov 18 01:37:44 -0800 2008 | some README formatting [drnic] |
![]() |
Rakefile | Tue Nov 18 01:33:58 -0800 2008 | refactored projects into a RubyGem [drnic] |
![]() |
lib/ | Tue Nov 18 01:33:58 -0800 2008 | refactored projects into a RubyGem [drnic] |
![]() |
script/ | Tue Nov 18 01:33:58 -0800 2008 | refactored projects into a RubyGem [drnic] |
![]() |
spec/ | Tue Nov 18 01:34:47 -0800 2008 | removed loader as it wasn't used [drnic] |
![]() |
tasks/ | Tue Nov 18 01:33:58 -0800 2008 | refactored projects into a RubyGem [drnic] |
rspec-multi-matchers
- https://github.com/gregwebs/rspec-multi-matchers
DESCRIPTION:
- match_each
- match_enum
- match_in_order
require 'rubygems' require 'spec' require 'rspec_multi_matchers' describe 'array of ones' do it 'should be all ones' do [1,2,3].should each { |n| n.should == 1 } end end =begin output 'array of ones should fail on 2' FAILED line: 14 item 1: 2 expected: 1, got: 2 (using ==) =end
As expected, the output shows expected and got fields line is the line number of the expectiation inside the block the item line gives the index of the item being yielded to the block, and the item itself
Warning
Note the use of brackets ’{ … }’ instead of ‘do … end’ this is necessary because ‘do .. end’ does not bind strong enough
RELATED ARTICLES:
- https://blog.thoughtfolder.com/2008-11-05-rspec-should-each-matcher.html
INSTALL:
- sudo gem install gregwebs-rspec-multi-matchers —source https://gems.github.com
LICENSE:
(The MIT License)
Copyright © 2008 Greg Weber
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.