module VCR::Cassette::Persisters::FileSystem

def absolute_path_to_file(file_name)

Other tags:
    Private: -
def absolute_path_to_file(file_name)
  return nil unless storage_location
  File.join(storage_location, sanitized_file_name_from(file_name))
end