little fixes and typos fix
This commit is contained in:
parent
9c1f3bfeff
commit
0b02040327
5 changed files with 70 additions and 6 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue