# File lib/mole/module.rb, line 65
  def mole_unchecked( opts={}, &interceptor )    
    opts[:interceptor] ||= interceptor
    opts[:method]      ||= :call             
    opts[:features]    ||= instance_methods( false )
    opts[:features].each do |feature|  
      wrap feature
      unchecked_mole_filters[feature.to_s] << [opts[:interceptor], opts[:method]]
    end
  end