Apply Patch
[akkoma] / test / pleroma / web / metadata / providers / theme_test.exs
1 defmodule Pleroma.Web.Metadata.Providers.ThemeTest do
2 use Pleroma.DataCase
3 alias Pleroma.Web.Metadata.Providers.Theme
4
5 setup do: clear_config([Pleroma.Web.Metadata.Providers.Theme, :theme_color], "configured")
6
7 test "it renders the theme-color meta tag" do
8 result = Theme.build_tags(%{})
9
10 assert {:meta, [name: "theme-color", content: "configured"], []} in result
11 end
12 end