(t *testing.T)
| 353 | } |
| 354 | |
| 355 | func TestDefaultConfig(t *testing.T) { |
| 356 | if !DefaultConfig().validProfile(false) { |
| 357 | t.Fatal("global default signing profile should be a valid profile.") |
| 358 | } |
| 359 | |
| 360 | if !DefaultConfig().validProfile(true) { |
| 361 | t.Fatal("global default signing profile should be a valid default profile") |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | func TestParse(t *testing.T) { |
| 366 | var validProfiles = []*SigningProfile{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…