live_beats/test/live_beats/mp3_stat_test.exs

13 lines
322 B
Elixir
Raw Normal View History

2021-12-15 02:02:50 +00:00
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