Add a test for safe_jsonb_set

This commit is contained in:
rinpatch 2019-10-18 14:33:51 +03:00
parent 39e996528c
commit b085cd2660
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
defmodule Pleroma.SafeJsonbSetTest do
use Pleroma.DataCase
test "it doesn't wipe the object when asked to set the value to NULL" do
assert %{rows: [[%{"key" => "value", "test" => nil}]]} =
Ecto.Adapters.SQL.query!(
Pleroma.Repo,
"select safe_jsonb_set('{\"key\": \"value\"}'::jsonb, '{test}', NULL);",
[]
)
end
end