summaryrefslogtreecommitdiff
path: root/test/support/fake_config.exs
blob: e624d8ecbf9bb681c07908cad792f16ee4d4f440 (plain) (blame)
1
2
3
4
5
6
7
8
defmodule PowerDNSx.FakeConfig do
  @app_config_token "4pp_S3cr37_T0k3n"
  @app_config_url "https://app-config-powerdns.test"


  def set_url, do: Application.put_env(:powerdns, :url, @app_config_url)
  def set_token, do: Application.put_env(:powerdns, :token, @app_config_token)
end