X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=test%2Flist_test.exs;h=ba79251da76070c990ccd2b2bbfef18cf8c9462a;hb=f82d9e135946539cca66002011e994309c8cb517;hp=f39033d022d7c58f32ba379ddae54bbc52cdf859;hpb=90986667cedb20b316ae4e160729d78d692d0c0e;p=akkoma diff --git a/test/list_test.exs b/test/list_test.exs index f39033d02..ba79251da 100644 --- a/test/list_test.exs +++ b/test/list_test.exs @@ -1,5 +1,5 @@ # Pleroma: A lightweight social networking server -# Copyright © 2017-2018 Pleroma Authors +# Copyright © 2017-2019 Pleroma Authors # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.ListTest do @@ -15,6 +15,13 @@ defmodule Pleroma.ListTest do assert title == "title" end + test "validates title" do + user = insert(:user) + + assert {:error, changeset} = Pleroma.List.create("", user) + assert changeset.errors == [title: {"can't be blank", [validation: :required]}] + end + test "getting a list not belonging to the user" do user = insert(:user) other_user = insert(:user)