aboutsummaryrefslogtreecommitdiff
path: root/test/docs/generator_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'test/docs/generator_test.exs')
-rw-r--r--test/docs/generator_test.exs12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/docs/generator_test.exs b/test/docs/generator_test.exs
index 0106809c2..9c9f4357b 100644
--- a/test/docs/generator_test.exs
+++ b/test/docs/generator_test.exs
@@ -85,6 +85,12 @@ defmodule Pleroma.Docs.GeneratorTest do
key: "application/xml",
type: {:list, :string},
suggestions: ["xml"]
+ },
+ %{
+ key: :versions,
+ type: {:list, :atom},
+ description: "List of TLS version to use",
+ suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
}
]
},
@@ -208,6 +214,12 @@ defmodule Pleroma.Docs.GeneratorTest do
assert child[:key] == "application/xml"
end
+ test "suggestion for tls versions" do
+ [%{children: children} | _] = Generator.convert_to_strings(@descriptions)
+ child = Enum.at(children, 8)
+ assert child[:suggestions] == [":tlsv1", ":tlsv1.1", ":tlsv1.2"]
+ end
+
test "subgroup with module name" do
[%{children: children} | _] = Generator.convert_to_strings(@descriptions)