summaryrefslogtreecommitdiff
path: root/test/pleroma/hashtag_test.exs
blob: 0264dea0b2df494d6e5b8a9b37ac1e7cc39c46c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.HashtagTest do
  use Pleroma.DataCase

  alias Pleroma.Hashtag

  describe "changeset validations" do
    test "ensure non-blank :name" do
      changeset = Hashtag.changeset(%Hashtag{}, %{name: ""})

      assert {:name, {"can't be blank", [validation: :required]}} in changeset.errors
    end
  end
end