summaryrefslogtreecommitdiffstats
path: root/pkg/utils/utils_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/utils/utils_test.go')
-rw-r--r--pkg/utils/utils_test.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkg/utils/utils_test.go b/pkg/utils/utils_test.go
index 76a9f8b95..918031512 100644
--- a/pkg/utils/utils_test.go
+++ b/pkg/utils/utils_test.go
@@ -346,3 +346,33 @@ func TestGetPadWidths(t *testing.T) {
assert.EqualValues(t, s.expected, getPadWidths(s.stringArrays))
}
}
+
+func TestMin(t *testing.T) {
+ type scenario struct {
+ a int
+ b int
+ expected int
+ }
+
+ scenarios := []scenario{
+ {
+ 1,
+ 1,
+ 1,
+ },
+ {
+ 1,
+ 2,
+ 1,
+ },
+ {
+ 2,
+ 1,
+ 1,
+ },
+ }
+
+ for _, s := range scenarios {
+ assert.EqualValues(t, s.expected, Min(s.a, s.b))
+ }
+}