diff options
author | baude <bbaude@redhat.com> | 2017-12-04 15:06:06 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-13 21:15:09 +0000 |
commit | 9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538 (patch) | |
tree | 9736c47af7246c93e2e2b6d6d246653ca57cc316 /libpod/util_test.go | |
parent | 61f606e192ad67b4819a909a6f1b18c41e33db2d (diff) | |
download | podman-9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538.tar.gz podman-9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538.tar.bz2 podman-9cc0c8ae143070c4d4ee691cab6a0fd0ebcaa538.zip |
kpod stats
Move kpod stats to the libpod backend.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #113
Approved by: baude
Diffstat (limited to 'libpod/util_test.go')
-rw-r--r-- | libpod/util_test.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libpod/util_test.go b/libpod/util_test.go index 24e5fdfac..7b9d19a43 100644 --- a/libpod/util_test.go +++ b/libpod/util_test.go @@ -17,3 +17,13 @@ func TestStringInSlice(t *testing.T) { // string is not in empty slice assert.False(t, StringInSlice("one", []string{})) } + +func TestRemoveScientificNotationFromFloat(t *testing.T) { + numbers := []float64{0.0, .5, 1.99999932, 1.04e+10} + results := []float64{0.0, .5, 1.99999932, 1.04} + for i, x := range numbers { + result, err := RemoveScientificNotationFromFloat(x) + assert.NoError(t, err) + assert.Equal(t, result, results[i]) + } +} |