mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Added Jim Weirich's excellent FlexMock class to vendor (Copyright 2003, 2004 by Jim Weirich (jim@weriichhouse.org)) -- it's not automatically required, though, so require 'flexmock' is still necessary [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4452 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
2f58a467e3
commit
7c326a3b54
2 changed files with 86 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Added Jim Weirich's excellent FlexMock class to vendor (Copyright 2003, 2004 by Jim Weirich (jim@weriichhouse.org)) -- it's not automatically required, though, so require 'flexmock' is still necessary [DHH]
|
||||
|
||||
* Fixed that Module#alias_method_chain should work with both foo? foo! and foo at the same time #4954 [anna@wota.jp]
|
||||
|
||||
* to_xml fixes, features, and speedup: introduce :dasherize option that converts updated_at to updated-at if true (the existing default); binary columns get encoding="base64" attribute; nil values get nil="true" attribute to distinguish empty values; add type information for float columns; allow arbitrarily deep :include; include SQL type information as the type attribute. #4989 [Blair Zajac <blair@orcaware.com>]
|
||||
|
|
84
activesupport/lib/active_support/vendor/flexmock.rb
vendored
Normal file
84
activesupport/lib/active_support/vendor/flexmock.rb
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
#---
|
||||
# Copyright 2003, 2004 by Jim Weirich (jim@weriichhouse.org).
|
||||
# All rights reserved.
|
||||
|
||||
# Permission is granted for use, copying, modification, distribution,
|
||||
# and distribution of modified versions of this work as long as the
|
||||
# above copyright notice is included.
|
||||
#+++
|
||||
|
||||
require 'test/unit'
|
||||
|
||||
# FlexMock is a flexible mock object suitable for using with Ruby's
|
||||
# Test::Unit unit test framework. FlexMock has a simple interface
|
||||
# that's easy to remember, and leaves the hard stuff to all those
|
||||
# other mock object implementations.
|
||||
#
|
||||
# Usage: See TestSamples for example usage.
|
||||
|
||||
class FlexMock
|
||||
include Test::Unit::Assertions
|
||||
|
||||
# Create a FlexMock object.
|
||||
def initialize
|
||||
@handlers = Hash.new
|
||||
@counts = Hash.new(0)
|
||||
@expected_counts = Hash.new
|
||||
end
|
||||
|
||||
# Handle all messages denoted by +sym+ by calling the given block
|
||||
# and passing any parameters to the block. If we know exactly how
|
||||
# many calls are to be made to a particular method, we may check
|
||||
# that by passing in the number of expected calls as a second
|
||||
# paramter.
|
||||
def mock_handle(sym, expected_count=nil, &block)
|
||||
if block_given?
|
||||
@handlers[sym] = block
|
||||
else
|
||||
@handlers[sym] = proc { }
|
||||
end
|
||||
@expected_counts[sym] = expected_count if expected_count
|
||||
end
|
||||
|
||||
# Verify that each method that had an explicit expected count was
|
||||
# actually called that many times.
|
||||
def mock_verify
|
||||
@expected_counts.keys.each do |key|
|
||||
assert_equal @expected_counts[key], @counts[key],
|
||||
"Expected method #{key} to be called #{@expected_counts[key]} times, " +
|
||||
"got #{@counts[key]}"
|
||||
end
|
||||
end
|
||||
|
||||
# Report how many times a method was called.
|
||||
def mock_count(sym)
|
||||
@counts[sym]
|
||||
end
|
||||
|
||||
# Ignore all undefined (missing) method calls.
|
||||
def mock_ignore_missing
|
||||
@ignore_missing = true
|
||||
end
|
||||
|
||||
# Handle missing methods by attempting to look up a handler.
|
||||
def method_missing(sym, *args, &block)
|
||||
if handler = @handlers[sym]
|
||||
@counts[sym] += 1
|
||||
args << block if block_given?
|
||||
handler.call(*args)
|
||||
else
|
||||
super(sym, *args, &block) unless @ignore_missing
|
||||
end
|
||||
end
|
||||
|
||||
# Class method to make sure that verify is called at the end of a
|
||||
# test.
|
||||
def self.use
|
||||
mock = new
|
||||
yield mock
|
||||
ensure
|
||||
mock.mock_verify
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue