Created
February 27, 2010 15:53
-
-
Save xiaods/316780 to your computer and use it in GitHub Desktop.
test single ruby helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "rubygems" | |
require "test/unit" | |
require "stringio" | |
module Test::Unit | |
# Used to fix a minor minitest/unit incompatibility in flexmock | |
# AssertionFailedError = Class.new(StandardError) | |
class TestCase | |
def self.must(name, &block) | |
test_name = "test_#{name.gsub(/\s+/,'_')}".to_sym | |
defined = instance_method(test_name) rescue false | |
raise "#{test_name} is already defined in #{self}" if defined | |
if block_given? | |
define_method(test_name, &block) | |
else | |
define_method(test_name) do | |
flunk "No implementation provided for #{name}" | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment