projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43742e0
)
doArithmetic: add test for division by zero
author
bep
<bjorn.erik.pedersen@gmail.com>
Wed, 11 Mar 2015 09:25:53 +0000
(10:25 +0100)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Wed, 11 Mar 2015 09:25:53 +0000
(10:25 +0100)
tpl/template_test.go
patch
|
blob
|
history
diff --git
a/tpl/template_test.go
b/tpl/template_test.go
index 3ea57b5922100228cb79b78b68ed436c1ec8e880..e4ebb5526a644d56d63ceba514c963734b267a37 100644
(file)
--- a/
tpl/template_test.go
+++ b/
tpl/template_test.go
@@
-123,10
+123,10
@@
func TestArethmic(t *testing.T) {
{uint8(2), uint8(2), '*', uint64(4)},
{uint16(4), uint8(2), '/', uint64(2)},
{4, 2, 'ยค', false},
+ {4, 0, '/', false},
} {
// TODO(bep): Take precision into account.
result, err := doArithmetic(this.a, this.b, this.op)
-
if b, ok := this.expect.(bool); ok && !b {
if err == nil {
t.Errorf("[%d] doArethmic didn't return an expected error", i)