mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Make MockRepo names more consistent
This commit is contained in:
parent
779571a086
commit
110e17b004
12 changed files with 79 additions and 47 deletions
27
tests/mock_share_repo.go
Normal file
27
tests/mock_share_repo.go
Normal file
|
@ -0,0 +1,27 @@
|
|||
package tests
|
||||
|
||||
import (
|
||||
"github.com/deluan/rest"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
)
|
||||
|
||||
type MockShareRepo struct {
|
||||
model.ShareRepository
|
||||
rest.Repository
|
||||
rest.Persistable
|
||||
|
||||
Entity interface{}
|
||||
Cols []string
|
||||
Err error
|
||||
}
|
||||
|
||||
func (m *MockShareRepo) Save(entity interface{}) (string, error) {
|
||||
m.Entity = entity
|
||||
return "id", m.Err
|
||||
}
|
||||
|
||||
func (m *MockShareRepo) Update(entity interface{}, cols ...string) error {
|
||||
m.Entity = entity
|
||||
m.Cols = cols
|
||||
return m.Err
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue