-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmocks.json
61 lines (61 loc) · 1.43 KB
/
mocks.json
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
{
"base_directory": "github.com/Scalingo/link",
"base_package": "github.com/Scalingo/link/v2",
"mocks": [
{
"interface": "Storage",
"src_package": "models"
},
{
"interface": "ARP",
"src_package": "network"
},
{
"interface": "NetworkInterface",
"src_package": "network"
},
{
"interface": "Scheduler",
"src_package": "scheduler"
},
{
"interface": "Client",
"src_package": "api"
},
{
"interface": "Checker",
"src_package": "healthcheck"
},
{
"interface": "Locker",
"src_package": "locker"
},
{
"interface": "Watcher",
"src_package": "watcher"
},
{
"interface": "EtcdLeaseManager",
"mock_file": "locker/etcd_lease_manager_mock.go",
"src_package": "locker"
},
{
"external": true,
"src_package": "go.etcd.io/etcd/client/v3",
"interface": "KV",
"mock_file": "etcdmock/kv_mock.go"
},
{
"external": true,
"src_package": "go.etcd.io/etcd/client/v3",
"interface": "Lease",
"mock_file": "etcdmock/lease_mock.go"
},
{
"external": true,
"src_package": "go.etcd.io/etcd/client/v3",
"interface": "Txn",
"mock_file": "etcdmock/txn_mock.go"
}
]
}