open-pod/test/podcast_feed/utility/format_test.exs
danilo silva 6b042f65ab using json instaed of xml
removed hardcoded from generic podcast medatadata
2020-05-23 21:51:56 +00:00

9 lines
No EOL
246 B
Elixir

defmodule PodcastFeed.Utility.FormatTest do
use ExUnit.Case
alias PodcastFeed.Utility.Format
test "Test placeholder are replaced" do
assert "http://foo/bar" == Format.compile("http://{host}/{path}", host: "foo", path: "bar")
end
end