mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-11 00:47:29 -06:00
more work on test rig
This commit is contained in:
parent
9a57dac5a1
commit
7ab9e78b44
18 changed files with 514 additions and 47 deletions
|
|
@ -9,6 +9,43 @@ type MockStorage struct {
|
|||
mock.Mock
|
||||
}
|
||||
|
||||
// ListKeys provides a mock function with given fields:
|
||||
func (_m *MockStorage) ListKeys() ([]string, error) {
|
||||
ret := _m.Called()
|
||||
|
||||
var r0 []string
|
||||
if rf, ok := ret.Get(0).(func() []string); ok {
|
||||
r0 = rf()
|
||||
} else {
|
||||
if ret.Get(0) != nil {
|
||||
r0 = ret.Get(0).([]string)
|
||||
}
|
||||
}
|
||||
|
||||
var r1 error
|
||||
if rf, ok := ret.Get(1).(func() error); ok {
|
||||
r1 = rf()
|
||||
} else {
|
||||
r1 = ret.Error(1)
|
||||
}
|
||||
|
||||
return r0, r1
|
||||
}
|
||||
|
||||
// RemoveFileAt provides a mock function with given fields: path
|
||||
func (_m *MockStorage) RemoveFileAt(path string) error {
|
||||
ret := _m.Called(path)
|
||||
|
||||
var r0 error
|
||||
if rf, ok := ret.Get(0).(func(string) error); ok {
|
||||
r0 = rf(path)
|
||||
} else {
|
||||
r0 = ret.Error(0)
|
||||
}
|
||||
|
||||
return r0
|
||||
}
|
||||
|
||||
// RetrieveFileFrom provides a mock function with given fields: path
|
||||
func (_m *MockStorage) RetrieveFileFrom(path string) ([]byte, error) {
|
||||
ret := _m.Called(path)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue