]> ruderich.org/simon Gitweb - safcm/safcm.git/blobdiff - cmd/safcm/config/hosts_test.go
tests: use subtests
[safcm/safcm.git] / cmd / safcm / config / hosts_test.go
index 49f4d5692da40bc96afeedc760fb53b84dfc0bad..36a8c37fd5db42127eb088ec7596d86540932849 100644 (file)
@@ -83,6 +83,7 @@ func TestLoadHosts(t *testing.T) {
        }
 
        for _, tc := range tests {
+               t.Run(tc.path, func(t *testing.T) {
                err := os.Chdir(filepath.Join(cwd, tc.path))
                if err != nil {
                        t.Fatal(err)
@@ -91,13 +92,14 @@ func TestLoadHosts(t *testing.T) {
                res, err := LoadHosts()
 
                if !reflect.DeepEqual(tc.exp, res) {
-                       t.Errorf("%s: res: %s", tc.path,
+                       t.Errorf("res: %s",
                                cmp.Diff(tc.exp, res))
                }
                // Ugly but the simplest way to compare errors (including nil)
                if fmt.Sprintf("%s", err) != fmt.Sprintf("%s", tc.expErr) {
-                       t.Errorf("%s: err = %#v, want %#v",
-                               tc.path, err, tc.expErr)
+                       t.Errorf("err = %#v, want %#v",
+                               err, tc.expErr)
                }
+               })
        }
 }