no not print empty keys in docker info
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
This commit is contained in:
parent
b538852b61
commit
27435a1e56
2 changed files with 31 additions and 0 deletions
17
ioutils/fmt_test.go
Normal file
17
ioutils/fmt_test.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
package ioutils
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestFprintfIfNotEmpty(t *testing.T) {
|
||||
wc := NewWriteCounter(&NopWriter{})
|
||||
n, _ := FprintfIfNotEmpty(wc, "foo%s", "")
|
||||
|
||||
if wc.Count != 0 || n != 0 {
|
||||
t.Errorf("Wrong count: %v vs. %v vs. 0", wc.Count, n)
|
||||
}
|
||||
|
||||
n, _ = FprintfIfNotEmpty(wc, "foo%s", "bar")
|
||||
if wc.Count != 6 || n != 6 {
|
||||
t.Errorf("Wrong count: %v vs. %v vs. 6", wc.Count, n)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue