blob: 95bca22c41229042337c141e172475429a4ebf98 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | # Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.User.NotificationSettingTest do
  use Pleroma.DataCase
  alias Pleroma.User.NotificationSetting
  describe "changeset/2" do
    test "sets valid privacy option" do
      changeset =
        NotificationSetting.changeset(
          %NotificationSetting{},
          %{"privacy_option" => true}
        )
      assert %Ecto.Changeset{valid?: true} = changeset
    end
  end
end
 |