19 lines
457 B
Elixir
19 lines
457 B
Elixir
defmodule LastFm.ConfigTest do
|
|
use ExUnit.Case, async: true
|
|
|
|
describe "resolve/1" do
|
|
test "reads data from application configuration" do
|
|
assert %LastFm.Config{
|
|
api_key: api_key,
|
|
user: user,
|
|
user_agent: user_agent
|
|
} =
|
|
LastFm.Config.resolve(:music_library)
|
|
|
|
assert is_binary(api_key)
|
|
assert is_binary(user)
|
|
assert is_binary(user_agent)
|
|
end
|
|
end
|
|
end
|