module RSpec::Rails::SystemExampleGroup

def method_name

Other tags:
    Private: -
def method_name
  @method_name ||= [
    self.class.name.underscore,
    RSpec.current_example.description.underscore
  ].join("_").tr(CHARS_TO_TRANSLATE.join, "_").byteslice(0...200).scrub("") + "_#{rand(1000)}"
end