mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Added Test case for Engine shutdown
Docker-DCO-1.1-Signed-off-by: Rajdeep Dua <dua_rajdeep@yahoo.com> (github: rajdeepd)
This commit is contained in:
parent
366fe67946
commit
0800f8cc19
1 changed files with 11 additions and 0 deletions
|
@ -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 }
|
||||
|
|
Loading…
Reference in a new issue