module Cucumber::CompatibilityKit

def example_path(example_name)

def example_path(example_name)
  path = File.join(examples_path, example_name)
  return path if File.directory?(path)
  raise ArgumentError.new
end