| Index: filter/count/count_test.go
|
| diff --git a/filter/count/count_test.go b/filter/count/count_test.go
|
| index 2154aa85020de6efe09a69ea49b83c0cd32b26b1..191d7ef78325d29ba1d50602cac23f48af14a1aa 100644
|
| --- a/filter/count/count_test.go
|
| +++ b/filter/count/count_test.go
|
| @@ -92,6 +92,15 @@ func TestCount(t *testing.T) {
|
| So(ctr.GetMulti.Successes(), ShouldEqual, 1)
|
| So(ctr.GetMulti.Total(), ShouldEqual, 2)
|
| })
|
| +
|
| + Convey(`datastore.Stop does not count as an error`, func() {
|
| + fb.BreakFeatures(datastore.Stop, "GetMulti")
|
| +
|
| + So(ds.GetMulti(vals), ShouldBeNil)
|
| + So(ctr.GetMulti.Successes(), ShouldEqual, 1)
|
| + So(ctr.GetMulti.Errors(), ShouldEqual, 0)
|
| + So(ctr.GetMulti.Total(), ShouldEqual, 1)
|
| + })
|
| })
|
|
|
| Convey("works for memcache", t, func() {
|
|
|