Implements NowPlayingRepository as an in-memory only struct

This commit is contained in:
Deluan 2020-01-10 21:45:17 -05:00 committed by Deluan Quintão
parent c9be5f7201
commit cead8906d6
10 changed files with 156 additions and 7 deletions

View file

@ -0,0 +1,14 @@
package persistence
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestPersistence(t *testing.T) {
//log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Common Persistence Suite")
}