public
Description: Facon is a mocking library in the spirit of the Bacon spec library. Small, compact, and works with Bacon.
Homepage: http://rubyforge.org/projects/facon/
Clone URL: git://github.com/chuyeow/facon.git
Click here to lend your support to: facon and make a donation at www.pledgie.com !
facon / Changelog.txt
100644 15 lines (10 sloc) 0.444 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
=== 0.4.1 / 2008-12-05
 
* Added #times, #once and #never expectation matchers. Thanks raggi!
  E.g.
    @mock.should.receive(:call_me_thrice).times(3)
    @mock.should.receive(:just_this_1_time).once
    @mock.should.receive(:dont_even_think_about_it).never
 
=== 0.4.0 / 2008-12-05
 
* Fix compatibility with Bacon 1.0 and 1.1.
 
=== 0.3.1 / 2008-02-19
 
* Fixed a bug where mocks were not being teared down when there is a previous spec failure.