mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add test
This commit is contained in:
parent
b36dd3f9cc
commit
d3cc558d14
1 changed files with 24 additions and 0 deletions
24
utils/jsonmessage_test.go
Normal file
24
utils/jsonmessage_test.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestError(t *testing.T) {
|
||||
je := JSONError{404, "Not found"}
|
||||
if je.Error() != "Not found" {
|
||||
t.Fatalf("Expected 'Not found' got '%s'", je.Error())
|
||||
}
|
||||
}
|
||||
|
||||
func TestProgress(t *testing.T) {
|
||||
jp := JSONProgress{0, 0, 0}
|
||||
if jp.String() != "" {
|
||||
t.Fatalf("Expected empty string, got '%s'", jp.String())
|
||||
}
|
||||
|
||||
jp2 := JSONProgress{1, 0, 0}
|
||||
if jp2.String() != " 1 B/?" {
|
||||
t.Fatalf("Expected ' 1/?', got '%s'", jp2.String())
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue