-
-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy path.mockery.yaml
More file actions
29 lines (24 loc) · 706 Bytes
/
.mockery.yaml
File metadata and controls
29 lines (24 loc) · 706 Bytes
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
# Mockery v3 configuration for blocky
# Run: make generate OR go tool mockery
packages:
# API package
github.com/0xERR0R/blocky/api:
config:
all: true
inpackage: true
filename: "mocks_test.go"
# Cache package - ExpiringCache interface
# Note: Using non-test filename (mocks.go) to allow cross-package access from resolver tests
github.com/0xERR0R/blocky/cache:
interfaces:
ExpiringCache:
config:
inpackage: true
filename: "mocks.go"
# Lists package - FileDownloader interface
github.com/0xERR0R/blocky/lists:
interfaces:
FileDownloader:
config:
inpackage: true
filename: "mocks_test.go"