defmodule LastFm.SessionTest do use ExUnit.Case, async: true alias LastFm.Session doctest LastFm.Session @xml """ cloud8421 super-secret 1 """ test "parse/1" do assert %Session{ name: "cloud8421", key: "super-secret", pro: true } == Session.parse(@xml) end end