First
[anni] / test / pleroma / safe_jsonb_set_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.SafeJsonbSetTest do
6   use Pleroma.DataCase, async: true
7
8   test "it doesn't wipe the object when asked to set the value to NULL" do
9     assert %{rows: [[%{"key" => "value", "test" => nil}]]} =
10              Ecto.Adapters.SQL.query!(
11                Pleroma.Repo,
12                "select safe_jsonb_set('{\"key\": \"value\"}'::jsonb, '{test}', NULL);",
13                []
14              )
15   end
16 end