summaryrefslogtreecommitdiff
path: root/test/support/fake_config.exs
diff options
context:
space:
mode:
authorRodrigo Coutinho <digao@osfeio.com>2017-12-29 18:32:36 -0200
committerGitHub <noreply@github.com>2017-12-29 18:32:36 -0200
commitf75b83f1713a7c7aacfcdd8a4134a9113981d136 (patch)
tree6e4ca433c2665b002f0c885dde82bdab16556429 /test/support/fake_config.exs
parentbump version (diff)
Fix test suite (#11)
* Fix broken specs and update exvcr * Provide default configuration to run tests * Show nameservers in zone
Diffstat (limited to '')
-rw-r--r--test/support/fake_config.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/support/fake_config.exs b/test/support/fake_config.exs
index 9f95fc2..0c27d93 100644
--- a/test/support/fake_config.exs
+++ b/test/support/fake_config.exs
@@ -3,8 +3,8 @@ defmodule PowerDNSex.FakeConfig do
@app_config_url "https://my-powerdns.api"
- def set_url, do: Application.put_env(:powerdns, :url, @app_config_url)
- def set_token, do: Application.put_env(:powerdns, :token, @app_config_token)
+ def set_url, do: Application.put_env(:powerdnsex, :url, @app_config_url)
+ def set_token, do: Application.put_env(:powerdnsex, :token, @app_config_token)
def token, do: @app_config_token
def url, do: @app_config_url