ash/test/query/function/at_test.exs

10 lines
172 B
Elixir
Raw Normal View History

2023-07-13 08:53:43 +12:00
defmodule Ash.Query.Function.AtTest do
use ExUnit.Case, async: true
import Ash.Expr
test "indexing works" do
assert 1 = eval!(expr(at([1, 2, 3], 0)))
end
end