1 package owners 2 3 import ( 4 "testing" 5 ) 6 7 func TestChangeTitle(t *testing.T) { 8 files, err := gatherUnowned(".") 9 if err != nil { 10 t.Error(err) 11 } 12 13 if len(files) != 1 { 14 t.Errorf("should only have one result") 15 } 16 } 17
View as plain text