1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 01:22:49 +00:00
Files
classic-wow-forums/test/myapp/battle_net/auth_test.exs

10 lines
245 B
Elixir

defmodule MyApp.BattleNet.AuthTest do
use MyAppWeb.ConnCase, async: true
import MyApp.BattleNet.Auth
test "get access token from battle net should error out" do
assert get_access_token("123") == {:error, "invalid_request"}
end
end