> Can you give us what you want to retrieve from the path?
Sure..
My code is exactly like this.
defmodule ExDocTest do
use ExUnit.Case, async: true
require ExDoc.Retriever
@root_dir Path.expand("../../../../", __DIR__)
@tmp_dir "#{@root_dir}/test/tmp"
@all_output_dir Path.expand("#{@tmp_dir}/doc_all", __DIR__)
@beam_dir "#{@tmp_dir}/ebin"
@all_beam_dir "#{@tmp_dir}/ebin_all"
@elixir_beam_dir
Path.expand("#{@root_dir}/../elixir/lib/elixir/ebin", __DIR__)
the File.cwd!/0 trick worked perfectly
you will just tell me if there is a neater way to achieve this.
thanks you José