Moved properties to engine layer

This commit is contained in:
Deluan 2016-03-08 18:40:16 -05:00
parent 067517a916
commit 8607e25c90
8 changed files with 20 additions and 18 deletions

View file

@ -6,6 +6,7 @@ import (
"github.com/deluan/gosonic/api/responses"
"github.com/deluan/gosonic/consts"
"github.com/deluan/gosonic/domain"
"github.com/deluan/gosonic/engine"
. "github.com/deluan/gosonic/tests"
"github.com/deluan/gosonic/tests/mocks"
"github.com/deluan/gosonic/utils"
@ -24,7 +25,7 @@ func TestGetIndexes(t *testing.T) {
return mockRepo
})
propRepo := mocks.CreateMockPropertyRepo()
utils.DefineSingleton(new(domain.PropertyRepository), func() domain.PropertyRepository {
utils.DefineSingleton(new(engine.PropertyRepository), func() engine.PropertyRepository {
return propRepo
})