File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ defmodule ExDoc.Language.ElixirTest do
97
97
assert_unchanged ( "bar/1" , current_module: AutolinkTest.Foo )
98
98
end
99
99
100
+ @ tag :otp24
100
101
test "auto-imported function" do
101
102
assert autolink_doc ( "+/2" ) ==
102
103
~m" [`+/2`](https://hexdocs.pm/elixir/Kernel.html#+/2)"
@@ -107,11 +108,8 @@ defmodule ExDoc.Language.ElixirTest do
107
108
assert autolink_doc ( "for/1" , apps: [ :elixir ] ) ==
108
109
~m" [`for/1`](Kernel.SpecialForms.html#for/1)"
109
110
110
- # TODO: Remove check once Elixir v1.12+ is required
111
- if Version . match? ( System . version ( ) , ">= 1.12.0-rc.0" ) do
112
- assert autolink_doc ( "..///3" ) ==
113
- ~m" [`..///3`](https://hexdocs.pm/elixir/Kernel.html#..///3)"
114
- end
111
+ assert autolink_doc ( "..///3" ) ==
112
+ ~m" [`..///3`](https://hexdocs.pm/elixir/Kernel.html#..///3)"
115
113
end
116
114
117
115
test "elixir callback" do
You can’t perform that action at this time.
0 commit comments