module AllureRspec::Utils

Public Instance Methods

strip_relative(path) click to toggle source

Strip relative ./ form path @param [String] path @return [String]

# File lib/allure_rspec/_utils.rb, line 8
def strip_relative(path)
  path.gsub("./", "")
end