We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6c25c commit 7735cd5Copy full SHA for 7735cd5
test/ex_doc/formatter/html_test.exs
@@ -195,6 +195,8 @@ defmodule ExDoc.Formatter.HTMLTest do
195
196
content = File.read!("#{output_dir()}/CustomBehaviourOne-callback-greet.html")
197
assert content =~ "You're seeing just the callback <code>greet</code>"
198
+
199
+ assert Path.wildcard("#{output_dir()}/CompiledWithDocs-*slashes.html") == []
200
end
201
202
test "generates all listing files" do
test/fixtures/compiled_with_docs.ex
@@ -39,6 +39,8 @@ defmodule CompiledWithDocs do
39
# Check that delegate autogenerate docs
40
defdelegate flatten(hello), to: List
41
42
+ def unquote(:"name/with/slashes")(), do: :ok
43
44
defmodule Nested do
45
46
0 commit comments