-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.mockery.yaml
65 lines (64 loc) · 1.79 KB
/
.mockery.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
filename: "{{ .InterfaceName | snakecase }}_mock.go"
dir: "{{.InterfaceDir}}"
mockname: "Mock{{.InterfaceName}}"
outpkg: "{{.PackageName}}"
inpackage: True
with-expecter: False
disable-version-string: True
packages:
github.com/content-services/content-sources-backend/pkg/tasks/queue:
interfaces:
Queue:
github.com/content-services/content-sources-backend/pkg/tasks/client:
interfaces:
TaskClient:
config:
filename: "client_mock.go"
github.com/content-services/content-sources-backend/pkg/pulp_client:
interfaces:
PulpGlobalClient:
PulpClient:
github.com/content-services/content-sources-backend/pkg/candlepin_client:
interfaces:
CandlepinClient:
github.com/content-services/content-sources-backend/pkg/cache:
interfaces:
Cache:
github.com/content-services/content-sources-backend/pkg/dao:
interfaces:
RepositoryConfigDao:
config:
filename: "repository_configs_mock.go"
RpmDao:
config:
filename: "rpms_mock.go"
RepositoryDao:
config:
filename: "repositories_mock.go"
SnapshotDao:
config:
filename: "snapshots_mock.go"
MetricsDao:
config:
filename: "metrics_mock.go"
TaskInfoDao:
config:
filename: "task_info_mock.go"
AdminTaskDao:
config:
filename: "admin_tasks_mock.go"
DomainDao:
config:
filename: "domain_dao_mock.go"
PackageGroupDao:
config:
filename: "package_groups_mock.go"
EnvironmentDao:
config:
filename: "environments_mock.go"
TemplateDao:
config:
filename: "templates_mock.go"
ModuleStreamsDao:
config:
filename: "modules_streams_mock.go"