live_beats/test/live_beats/mp3_stat_test.exs
2021-12-14 21:02:50 -05:00

13 lines
322 B
Elixir

defmodule LiveBeats.MP3StatTest do
use ExUnit.Case, async: true
alias LiveBeats.MP3Stat
test "parse/1 with valid mp3" do
{:ok, %MP3Stat{} = stat} = MP3Stat.parse("test/support/fixtures/silence1s.mp3")
assert stat.duration == 1
assert stat.title == "Silence"
assert stat.artist == "Anon"
end
end