Sign in
fuchsia
/
third_party
/
github.com
/
moby
/
moby
/
cbd94183abd05880d293f1235707209d7fe593b8
/
.
/
daemon
/
errors_test.go
blob: 1c79aa33614a682da1d53d50ad0ac64c636858ca [
file
]
package daemon
import (
"testing"
"gotest.tools/v3/assert"
)
func TestContainerNotRunningError(t *testing.T) {
err := errNotRunning("12345")
assert.Check(t, isNotRunning(err))
}