14 lines
255 B
Elixir
14 lines
255 B
Elixir
defmodule RDF.TestData do
|
|
|
|
@dir Path.join(File.cwd!, "test/data/")
|
|
def dir, do: @dir
|
|
|
|
def file(name) do
|
|
if (path = Path.join(@dir, name)) |> File.exists? do
|
|
path
|
|
else
|
|
raise "Test data file '#{name}' not found"
|
|
end
|
|
end
|
|
|
|
end
|