зеркало из https://github.com/mozilla/scribe.git
validate error condition in package policy test
This commit is contained in:
Родитель
d2cfc553e9
Коммит
1171d5bb8a
|
@ -162,8 +162,17 @@ func TestPackagePolicy(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatalf("scribe.GetResults: %v", err)
|
||||
}
|
||||
if sres.MasterResult != stest.ExpectedResult {
|
||||
t.Fatalf("result incorrect for test %v", x)
|
||||
if stest.ExpectError {
|
||||
if !sres.IsError {
|
||||
t.Fatalf("test %v should have been an error", x)
|
||||
}
|
||||
} else {
|
||||
if sres.IsError {
|
||||
t.Fatalf("test %v resulted in an error", x)
|
||||
}
|
||||
if sres.MasterResult != stest.ExpectedResult {
|
||||
t.Fatalf("result incorrect for test %v", x)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче