oh-my-posh/segment_spotify_test.go
2020-11-12 14:04:52 +01:00

38 lines
738 B
Go

package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSpotifyStringPlayingSong(t *testing.T) {
expected := "\ue602 Candlemass - Spellbreaker"
s := &spotify{
artist: "Candlemass",
track: "Spellbreaker",
status: "playing",
}
assert.Equal(t, expected, s.string())
}
func TestSpotifyStringPausedSong(t *testing.T) {
expected := "\uF8E3 Candlemass - Spellbreaker"
s := &spotify{
artist: "Candlemass",
track: "Spellbreaker",
status: "paused",
}
assert.Equal(t, expected, s.string())
}
func TestSpotifyStringStoppedSong(t *testing.T) {
expected := "\uf04d "
s := &spotify{
artist: "Candlemass",
track: "Spellbreaker",
status: "stopped",
}
assert.Equal(t, expected, s.string())
}