ash_authentication/test/ash_authentication_test.exs
James Harton 1c8f138c67
improvement!: Major redesign of DSL and code structure. (#35)
Highlights:

* Replaced `AshAuthentication.Provider` with the much more flexible `AshAuthentication.Strategy`.
* Moved strategies to within the `authentication` DSL using entities and removed excess extensions.
* Added a lot more documentation and test coverage.
2022-11-23 09:09:41 +13:00

12 lines
338 B
Elixir

defmodule AshAuthenticationTest do
@moduledoc false
use DataCase, async: true
import AshAuthentication
doctest AshAuthentication
describe "authenticated_resources/0" do
test "it correctly locates all authenticatable resources" do
assert [Example.User] = authenticated_resources(:ash_authentication)
end
end
end