# File lib/facon/baconize.rb, line 65
      def self.included(base)
        # Remove Facon::Mockable methods we mixed in to Object, since we don't
        # need those in the Should class.
        base.class_eval do
          instance_methods.each do |method|
            undef_method(method) if Facon::Mockable.public_instance_methods.include?(method)
          end
        end
      end