-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinfs_gen_test.go
46 lines (34 loc) · 1.75 KB
/
binfs_gen_test.go
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
// generated by binfs
package binfs_test
import (
"go.guoyk.net/binfs"
"time"
)
var (
binfsfc811de4c92fe9fa53cbb002819fa6c4e35d369b = binfs.Chunk{
Path: []string{"testdata1", "bigdata"},
Date: time.Unix(1562475243, 0),
Data: []byte{0xb6, 0x72, 0xa9, 0xe7, 0x40, 0x6, 0xc4, 0x25, 0xd1, 0x4, 0xa4, 0x58, 0xa1, 0xb9, 0xfb, 0xe0, 0xb1, 0xad, 0x88, 0x4d, 0x6e, 0x7d, 0x6d, 0xce, 0x45, 0x34, 0x1d, 0x6e, 0xb, 0xed, 0xc7, 0xaa, 0xbd, 0x75, 0x10, 0xaf, 0x8, 0x21, 0x8e, 0x19, 0x42, 0x40, 0xc1, 0x99, 0x5a, 0x5, 0xb2, 0x1, 0x92, 0x7b, 0x77, 0x32, 0xbc, 0x0, 0x88, 0x77, 0xa2, 0x4e, 0x29, 0xe7, 0xbb, 0x2f, 0xc, 0x78, 0x8b, 0xd5, 0x12, 0x33, 0xc6, 0xb1, 0x52, 0x53, 0xda, 0xf4, 0x87, 0x50, 0x2e, 0xab, 0xd, 0xc8, 0x58, 0x6e, 0x6d, 0x6f, 0xb6, 0xb2, 0xc, 0x6, 0xe4, 0xce, 0x18, 0xd2, 0xd, 0x46, 0x3c, 0x55, 0xc, 0xdd, 0xe8, 0x79, 0x68, 0xe4, 0x5e, 0xd, 0x16, 0xbc, 0xdf, 0x63, 0x81, 0xc5, 0x32, 0xba, 0xac, 0x50, 0x23},
}
binfs3857b672471862eab426eba0622e44bd2cedbd5d = binfs.Chunk{
Path: []string{"testdata1", "hello.txt"},
Date: time.Unix(1562470106, 0),
Data: []byte{0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x31, 0xa},
}
binfsc9ee995ffd32513f2b65f4fab85616d6aba6f26c = binfs.Chunk{
Path: []string{"testdata2", "hello2.txt"},
Date: time.Unix(1562470106, 0),
Data: []byte{0x68, 0x65, 0x6c, 0x6c, 0x6f, 0xa},
}
binfs7a01435522e27d84a14ce54639482d066bb7e928 = binfs.Chunk{
Path: []string{"testdata2", "testdata3", "hello3.txt"},
Date: time.Unix(1562470106, 0),
Data: []byte{0x68, 0x65, 0x6c, 0x6c, 0x6f, 0xa},
}
)
func init() {
binfs.Load(&binfsfc811de4c92fe9fa53cbb002819fa6c4e35d369b)
binfs.Load(&binfs3857b672471862eab426eba0622e44bd2cedbd5d)
binfs.Load(&binfsc9ee995ffd32513f2b65f4fab85616d6aba6f26c)
binfs.Load(&binfs7a01435522e27d84a14ce54639482d066bb7e928)
}