File: errors_test.go

package info (click to toggle)
golang-github-go-git-gcfg 2.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: makefile: 12
file content (17 lines) | stat: -rw-r--r-- 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package gcfg_test

import "testing"

func TestXxx(t *testing.T) {
	tests := []struct {
		name string
		in   error
		want error
	}{}

	for _, tc := range tests {
		t.Run(tc.name, func(t *testing.T) {
			// For
		})
	}
}