ash/test/resource/actions/destroy_test.exs
2020-06-02 01:47:25 -04:00

63 lines
1.4 KiB
Elixir

defmodule Ash.Test.Dsl.Resource.Actions.DestroyTest do
@moduledoc false
use ExUnit.Case, async: true
defmacrop defposts(do: body) do
quote do
defmodule Post do
@moduledoc false
use Ash.Resource, name: "posts", type: "post"
unquote(body)
end
end
end
describe "representation" do
test "it creates an action" do
defposts do
actions do
destroy :default
end
end
assert [
%Ash.Resource.Actions.Destroy{
name: :default,
primary?: true,
type: :destroy
}
] = Ash.actions(Post)
end
end
describe "validation" do
test "it fails if `name` is not an atom" do
assert_raise(
Ash.Error.ResourceDslError,
"actions -> destroy:\n action name must be an atom",
fn ->
defposts do
actions do
destroy "default"
end
end
end
)
end
test "it fails if `primary?` is not a boolean" do
assert_raise(
Ash.Error.ResourceDslError,
"actions -> destroy -> default:\n expected :primary? to be an boolean, got: 10",
fn ->
defposts do
actions do
destroy :default, primary?: 10
end
end
end
)
end
end
end