-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathChangelog.txt
32 lines (20 loc) · 948 Bytes
/
Changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
=== 0.5.0
* Added Ruby 1.9.2 compatibility. Thanks ymendel!
* Get rid of that dependency on hoe, use Bundler to manage gem release.
=== 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.
=== 0.3 / 2008-02-18
* Fixed a bug with proxied methods not being cleared.
* Fixed a bug where the same mocks were repeatedly being added to $facon_mocks.
=== 0.2 / 2008-02-13
* Use #after block to verify mocks so that the stack trace is more helpful (it now actually shows the line in the spec where the mock error occurred).
=== 0.1 / 2008-02-09
* First release!