mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
38 lines
738 B
Go
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())
|
|
}
|