X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fxml_builder_test.exs;h=a7742f339f2d9a98fcea1ebd81d580dea2f8ef0b;hb=8cfaab8f04cae6fcc20a37cdb463ee0c93b71217;hp=f502a0f0ec3b2e1ca774e6648ef4ec20f24143a1;hpb=a9b2ad17596d1b6deca646239a95e94dc644ebf3;p=akkoma diff --git a/test/xml_builder_test.exs b/test/xml_builder_test.exs index f502a0f0e..a7742f339 100644 --- a/test/xml_builder_test.exs +++ b/test/xml_builder_test.exs @@ -1,9 +1,13 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2018 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + defmodule Pleroma.XmlBuilderTest do use Pleroma.DataCase alias Pleroma.XmlBuilder test "Build a basic xml string from a tuple" do - data = { :feed, %{ xmlns: "http://www.w3.org/2005/Atom"}, "Some content" } + data = {:feed, %{xmlns: "http://www.w3.org/2005/Atom"}, "Some content"} expected_xml = "Some content" @@ -11,9 +15,10 @@ defmodule Pleroma.XmlBuilderTest do end test "returns a complete document" do - data = { :feed, %{ xmlns: "http://www.w3.org/2005/Atom"}, "Some content" } + data = {:feed, %{xmlns: "http://www.w3.org/2005/Atom"}, "Some content"} - expected_xml = "Some content" + expected_xml = + "Some content" assert XmlBuilder.to_doc(data) == expected_xml end @@ -34,11 +39,12 @@ defmodule Pleroma.XmlBuilderTest do :feed, [ {:guy, "brush"}, - {:lament, %{ configuration: "puzzle" }, "pinhead" } + {:lament, %{configuration: "puzzle"}, "pinhead"} ] } - expected_xml = ~s[brushpinhead] + expected_xml = + ~s[brushpinhead] assert XmlBuilder.to_xml(data) == expected_xml end @@ -50,7 +56,7 @@ defmodule Pleroma.XmlBuilderTest do test "Uses self-closing tags when no content is giving" do data = { :link, - %{ rel: "self" } + %{rel: "self"} } expected_xml = ~s[]