mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-02-12 08:43:39 +01:00
11 lines
272 B
Elixir
11 lines
272 B
Elixir
|
defmodule Pleroma.Web.XMLTest do
|
||
|
use Pleroma.DataCase, async: true
|
||
|
|
||
|
alias Pleroma.Web.XML
|
||
|
|
||
|
test "refuses to load external entities from XML" do
|
||
|
data = File.read!("test/fixtures/xml_external_entities.xml")
|
||
|
assert(:error == XML.parse_document(data))
|
||
|
end
|
||
|
end
|