File: expectations.go

package info (click to toggle)
golang-github-hugelgupf-p9 0.3.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 608 kB
  • sloc: makefile: 9
file content (22 lines) | stat: -rw-r--r-- 265 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package rovmtests

type Dir struct {
	Path    string
	Members []string
}

type File struct {
	Path    string
	Content string
}

type Symlink struct {
	Path   string
	Target string
}

type Expectations struct {
	Dirs     []Dir
	Files    []File
	Symlinks []Symlink
}