Add test cases for Ne and Eq type normalisation
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 9 Mar 2015 14:52:32 +0000 (15:52 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 9 Mar 2015 14:52:32 +0000 (15:52 +0100)
See #961

tpl/template_test.go

index 000a4870d130486a90f5f6f484ce9b32ab0e1b30..b0d18f8f4477458d14590d1c0f3684e18fe52a8a 100644 (file)
@@ -65,9 +65,15 @@ func doTestCompare(t *testing.T, tp tstCompareType, funcUnderTest func(a, b inte
                {5, 8, -1},
                {8, 5, 1},
                {5, 5, 0},
+               {int(5), int64(5), 0},
+               {int32(5), int(5), 0},
+               {int16(4), int(5), -1},
+               {uint(15), uint64(15), 0},
                {-2, 1, -1},
                {2, -5, 1},
                {0.0, 1.23, -1},
+               {1.1, 1.1, 0},
+               {float32(1.0), float64(1.0), 0},
                {1.23, 0.0, 1},
                {"5", "5", 0},
                {"8", "5", 1},