6b042f65ab
removed hardcoded from generic podcast medatadata
9 lines
No EOL
246 B
Elixir
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 |