mirror of https://github.com/knative/func.git
23 lines
423 B
Go
23 lines
423 B
Go
package mock
|
|
|
|
import (
|
|
"context"
|
|
bosonFunc "github.com/boson-project/func"
|
|
)
|
|
|
|
type Lister struct {
|
|
ListInvoked bool
|
|
ListFn func() ([]bosonFunc.ListItem, error)
|
|
}
|
|
|
|
func NewLister() *Lister {
|
|
return &Lister{
|
|
ListFn: func() ([]bosonFunc.ListItem, error) { return []bosonFunc.ListItem{}, nil },
|
|
}
|
|
}
|
|
|
|
func (l *Lister) List(context.Context) ([]bosonFunc.ListItem, error) {
|
|
l.ListInvoked = true
|
|
return l.ListFn()
|
|
}
|