@api private
Returns the names of assertion methods that we want to expose to examples without exposing non-assertion methods in Test::Unit or Minitest.
# File lib/rspec/rails/adapters.rb, line 42 def assertion_method_names Test::Unit::Assertions.public_instance_methods.select{|m| m.to_s =~ %r^(assert|flunk)/} + [:build_message] end
@api private
# File lib/rspec/rails/adapters.rb, line 48 def define_assertion_delegators assertion_method_names.each do |m| class_eval " def #{m}(*args, &block) assertion_delegator.send :#{m}, *args, &block end " end end