aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/errors_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/errors_test.go')
-rw-r--r--container/errors_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/container/errors_test.go b/container/errors_test.go
index eae5ee7d..f99812b8 100644
--- a/container/errors_test.go
+++ b/container/errors_test.go
@@ -39,6 +39,9 @@ func TestMessageFromError(t *testing.T) {
{"state", OpStateError("overlay"),
"impossible overlay state reached", true},
+ {"tmpfs", TmpfsSizeError(-1),
+ "tmpfs size -1 out of bounds", true},
+
{"unsupported", errUnique, zeroString, false},
}
for _, tc := range testCases {