module RSpec::Support::RubyFeatures

def module_refinement_supported?

def module_refinement_supported?
  Module.method_defined?(:refine) || Module.private_method_defined?(:refine)
end