Browse Source

fix test

merge-requests/10/head
Egor Kislitsyn 5 years ago
parent
commit
02d7cb1eba
1 changed files with 0 additions and 7 deletions
  1. +0
    -7
      test/parser_test.exs

+ 0
- 7
test/parser_test.exs View File

@ -83,13 +83,6 @@ defmodule AutoLinker.ParserTest do
assert parse(text, class: false, rel: false, new_window: false) == expected
end
text = "Check out <div class='section'>google.com</div>"
expected =
"Check out <div class='section'><a href=\"http://google.com\">google.com</a></div>"
assert parse(text, class: false, rel: false, new_window: false) == expected
end
test "excludes html with specified class" do
text = "```Check out <div class='section'>google.com</div>```"


Loading…
Cancel
Save