10 lines
187 B
Elixir
10 lines
187 B
Elixir
|
|
defmodule Postland.KeyFixtures do
|
||
|
|
def public do
|
||
|
|
File.read!("test/support/fixtures/public.pem")
|
||
|
|
end
|
||
|
|
|
||
|
|
def private do
|
||
|
|
File.read!("test/support/fixtures/private.pem")
|
||
|
|
end
|
||
|
|
end
|