2019-10-28 10:47:23 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-10-28 10:47:23 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.User.NotificationSettingTest do
|
2020-12-21 12:21:40 +01:00
|
|
|
use Pleroma.DataCase, async: true
|
2019-10-28 10:47:23 +01:00
|
|
|
|
|
|
|
alias Pleroma.User.NotificationSetting
|
|
|
|
|
|
|
|
describe "changeset/2" do
|
2020-06-26 19:45:46 +02:00
|
|
|
test "sets option to hide notification contents" do
|
2019-10-28 10:47:23 +01:00
|
|
|
changeset =
|
|
|
|
NotificationSetting.changeset(
|
|
|
|
%NotificationSetting{},
|
2020-06-26 19:45:46 +02:00
|
|
|
%{"hide_notification_contents" => true}
|
2019-10-28 10:47:23 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
assert %Ecto.Changeset{valid?: true} = changeset
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|