def <name>(args):
  git_scripts_repo_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
  branch = Helper2(git_scripts_repo_path).current_branch()
  print("It works! Your local git-scripts repo is in branch '{0}'".format(branch))
  print("Run `python -m unittest test.{0}` to run the test".format('<name>'))
  return True