Skip to content
Snippets Groups Projects
Select Git revision
  • 3d8f42bafa28f6d5832beedccb7562aca0943728
  • master default protected
  • feature/PRXS-3383-CollectionsRankSortAPI
  • feature/PRXS-3383-CollectionsSort
  • feature/3109-SerializeFeature
  • release/0.33
  • feature/3109-RecoverySchema
  • feature/3109-feature
  • fix/PRXS-3369-ValidateFields
  • refactor/PRXS-3306-MovePkgGroup1
  • refactor/6-pkg-refactor-expr
  • fix/PRXS-3360-TemplateBuilderPatch
  • feature/3293-MongoV2
  • feature/3272-GoVersionUp
  • feature/PRXS-3218-HideTemplateActions
  • feature/PRXS-3234-PruneIdents
  • feature/3146-UpdateItemStorageInterface
  • feature/3274-ObjectIndexesFixes
  • feature/PRXS-3143-3235-ReferenceOptions
  • feature/PRXS-3143-3237-ExecuteOptions
  • feature/3149-LocaleCodeAsID-Implementation
  • v0.33.1
  • v0.32.0
  • v0.31.1
  • v0.31.0
  • v0.30.0
  • v0.29.0
  • v0.28.0
  • v0.27.0-alpha.1+16
  • v0.27.0-alpha.1+15
  • v0.27.0-alpha.1+14
  • v0.27.0-alpha.1+13
  • v0.27.0-alpha.1+12
  • v0.27.0-alpha.1+11
  • v0.27.0-alpha.1+10
  • v0.27.0-alpha.1+9
  • v0.27.0-alpha.1+8
  • v0.27.0-alpha.1+7
  • v0.27.0-alpha.1+6
  • v0.27.0-alpha.1+5
  • v0.27.0-alpha.1+4
41 results

Downloader.go

Blame
  • Downloader.go 603 B
    // Code generated by mockery v2.7.4. DO NOT EDIT.
    
    package mocks
    
    import (
    	io "io"
    
    	files "git.perx.ru/perxis/perxis-go/pkg/files"
    
    	mock "github.com/stretchr/testify/mock"
    )
    
    // Downloader is an autogenerated mock type for the Downloader type
    type Downloader struct {
    	mock.Mock
    }
    
    // Download provides a mock function with given fields: dst, file
    func (_m *Downloader) Download(dst io.Writer, file *files.File) error {
    	ret := _m.Called(dst, file)
    
    	var r0 error
    	if rf, ok := ret.Get(0).(func(io.Writer, *files.File) error); ok {
    		r0 = rf(dst, file)
    	} else {
    		r0 = ret.Error(0)
    	}
    
    	return r0
    }