Sha256: 23e831769628e6a209ba257f21f30f4392aedf8e1803a530db56f8d89de9f9f5
Contents?: true
Size: 1.9 KB
Versions: 4
Compression:
Stored size: 1.9 KB
Contents
if RUBY_PLATFORM == 'java' require 'rubygems' end if RUBY_VERSION >= "1.9" require 'simplecov' SimpleCov.start end require 'minitest/spec' require 'minitest/autorun' require 'rr' Thread.abort_on_exception = true class MiniTest::Unit::TestCase include RR::Adapters::TestUnit def assert_nothing_raised yield assert true end def assert_not_nil it refute_nil it end def assert_defines_singleton_method klass, method, msg = nil method = method.to_sym methods = klass.singleton_methods(false).map { |name| name.to_sym } msg = message(msg) { "Expected #{mu_pp(klass)} to define singleton method #{mu_pp(method)}, " + "but only found #{mu_pp(methods)}" } assert_includes methods, method, msg end def refute_defines_singleton_method klass, method, msg = nil method = method.to_sym methods = klass.singleton_methods(false).map { |name| name.to_sym } msg = message(msg) { "Expected #{mu_pp(klass)} not to define singleton method #{mu_pp(method)}" } refute_includes methods, method, msg end def assert_defines_instance_method klass, method, msg = nil method = method.to_sym methods = klass.instance_methods(false).map { |name| name.to_sym } msg = message(msg) { "Expected #{mu_pp(klass)} to define instance method #{mu_pp(method)}, " + "but only found #{mu_pp(methods)}" } assert_includes methods, method, msg end def refute_defines_instance_method klass, method, msg = nil method = method.to_sym methods = klass.instance_methods(false).map { |name| name.to_sym } msg = message(msg) { "Expected #{mu_pp(klass)} not to define instance method #{mu_pp(method)}" } refute_includes methods, method, msg end end class MiniTest::Spec class << self alias :setup :before alias :teardown :after alias :should :it alias :context :describe end end require 'gir_ffi-base'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gir_ffi-0.6.0 | test/base_test_helper.rb |
gir_ffi-0.5.2 | test/base_test_helper.rb |
gir_ffi-0.5.1 | test/base_test_helper.rb |
gir_ffi-0.5.0 | test/base_test_helper.rb |