Sha256: a96386040ce8bd7f5f9e051e00ba0d26d3277ad63cb86cc2b42e6a713ed86885
Contents?: true
Size: 952 Bytes
Versions: 6
Compression:
Stored size: 952 Bytes
Contents
require 'test/unit' require 'rubygems' require 'mocha' require 'set' require File.dirname(__FILE__) + '/../lib/validatable' class << Test::Unit::TestCase def test(name, &block) test_name = :"test_#{name.gsub(' ','_')}" raise ArgumentError, "#{test_name} is already defined" if self.instance_methods.include? test_name.to_s define_method test_name, &block end def expect(expected_value, &block) define_method :"test_#{caller.first.split("/").last}" do begin assert_equal expected_value, instance_eval(&block) rescue Exception => ex raise ex unless expected_value.is_a?(Class) && ex.is_a?(expected_value) assert_equal expected_value, ex.class end end end end class Test::Unit::TestCase def assert_array_equal a, b assert_equal Set.new(a), Set.new(b) end end class Array def to_blank_options_hash self.inject({}) {|hash, value| hash[value] = nil; hash } end end
Version data entries
6 entries across 6 versions & 1 rubygems