defmodule Frenzy.OPML.ImporterTests do use ExUnit.Case alias Frenzy.OPML.Importer doctest Importer @opml """ Subscriptions-OnMyMac.opml """ test "parse simple OPML" do res = Importer.parse_opml(@opml) assert res == %{ :default => ["https://jvns.ca/atom.xml"], "my folder" => ["https://shapeof.com/feed.json"] } end end