Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/purcell/mockr
Tiny Ruby mock object library inspired by JMock
https://github.com/purcell/mockr
Last synced: about 2 months ago
JSON representation
Tiny Ruby mock object library inspired by JMock
- Host: GitHub
- URL: https://github.com/purcell/mockr
- Owner: purcell
- Created: 2008-05-05T08:06:41.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T07:08:11.000Z (3 months ago)
- Last Synced: 2024-11-07T08:19:28.915Z (3 months ago)
- Language: Ruby
- Homepage: http://dev.sanityinc.com/mockr
- Size: 15.6 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mockr
Mockr is a pure Ruby library to support the Mock Objects approach to
unit testing, and is inspired by Java's JMock.Several other Mock Object libraries exist for Ruby. In addition to its
unusually natural syntax for setting expectations, Mockr has two main
distinguishing features:1. Support for the distinction between mocking and stubbing
2. A constraint-based mechanism for matching call parametersMockR was initially presented by author Steve Purcell at the
2005 European Ruby Conference, and was written entirely test-first.For more information or to contact the author, see
https://github.com/mockr## Introduction
An instance of `Mockr::Mock` can be programmed with responses to
methods calls expected during the course of a unit test. At the
end of the test, the instance can verify whether its expectations
were met, signalling a test failure if they were not.Mocks distinguish between 'expected' method calls, which trigger
test failures if they are not made, and 'stub' method calls, which
are not verified. 'Expected' calls are typically those considered
critical to the proper use of the mocked class, and 'stub' calls are
those considered more flexible in their use.## Example
The following is an example of a set of tests written entirely using MockR
```ruby
require 'test/unit'
require 'mockr'class BurglarAlarmTest < Test::Unit::TestCase
include Mockr::TestCaseHelpersdef setup
@laser_grid, @police_link = new_mock, new_mock
@alarm = BurglarAlarm.new(@laser_grid.proxy, @police_link.proxy)
enddef test_police_station_not_contacted_if_grid_okay
@laser_grid.expects.intact?.as { true }
@alarm.check
enddef test_police_station_is_contacted_if_grid_not_okay
@laser_grid.expects.intact?.as { false }
@police_link.expects.incident("Grid breached")
@alarm.check
enddef test_police_station_warned_if_grid_down
@laser_grid.expects.intact?.as { raise IOError.new("comms down") }
@police_link.expects.warning(/down/) # A loose parameter constraint
@alarm.check
endend
```These tests would be satisfied by the following class:
```ruby
## Collaborates with a LaserGrid and a PoliceStationUplink
class BurglarAlarm
def initialize(laser_grid, police_link)
@laser_grid = laser_grid
@police_link = police_link
enddef check
begin
@police_link.incident("Grid breached") unless @laser_grid.intact?
rescue
@police_link.warning("Grid down")
end
end
end
```## Resources
* [Home page](https://github.com/purcell/mockr)
## Copyright
Copyright (c) 2005-2006 Steve Purcell.
## Licence
MockR is distributed under the same terms as Ruby itself.
[💝 Support this project and my other Open Source work](https://www.patreon.com/sanityinc)
[💼 LinkedIn profile](https://uk.linkedin.com/in/stevepurcell)
[✍ sanityinc.com](http://www.sanityinc.com/)