Merge pull request #7622 from rajdeepd/master
Added Test case for Engine shutdown Upstream-commit: 2bdfbab23dc0b57fda9620a8a5a583da5e051e49 Component: engine
This commit is contained in:
@ -61,6 +61,17 @@ func TestJob(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestEngineShutdown(t *testing.T) {
|
||||
eng := New()
|
||||
if eng.IsShutdown() {
|
||||
t.Fatalf("Engine should not show as shutdown")
|
||||
}
|
||||
eng.Shutdown()
|
||||
if !eng.IsShutdown() {
|
||||
t.Fatalf("Engine should show as shutdown")
|
||||
}
|
||||
}
|
||||
|
||||
func TestEngineCommands(t *testing.T) {
|
||||
eng := New()
|
||||
handler := func(job *Job) Status { return StatusOK }
|
||||
|
||||
Reference in New Issue
Block a user