mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-02-07 14:23:40 +01:00
10 lines
272 B
Elixir
10 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
|