From 0b7229f7b2a4fbc3537404802cae4c66cedb526c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 5 Aug 2015 18:55:25 +0200 Subject: [PATCH] Add some float tests to TestArethmic --- tpl/template_funcs_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tpl/template_funcs_test.go b/tpl/template_funcs_test.go index 81018626a..f04cadeef 100644 --- a/tpl/template_funcs_test.go +++ b/tpl/template_funcs_test.go @@ -125,6 +125,8 @@ func TestArethmic(t *testing.T) { {uint16(4), uint8(2), '/', uint64(2)}, {4, 2, 'ยค', false}, {4, 0, '/', false}, + {float64(2.3), float64(2.3), '+', float64(4.6)}, + {float64(2.3), int(2), '*', float64(4.6)}, } { // TODO(bep): Take precision into account. result, err := doArithmetic(this.a, this.b, this.op)