(expect, s, fillObj)
| 73 | strictEqual(ret, s || store, "transact should return this"); |
| 74 | } |
| 75 | function getAll(expect, s, fillObj) { |
| 76 | if (fillObj) { |
| 77 | deepEqual((s || store).getAll(fillObj), expect, "getAll(fillObj)"); |
| 78 | } else { |
| 79 | deepEqual((s || store)(), expect, "getAll"); |
| 80 | } |
| 81 | } |
| 82 | function keys(expect, s, fillList) { |
| 83 | var _keys = (s || store).keys(fillList); |
| 84 | for (var i=0,m=expect.length; i<m; i++) { |
no test coverage detected
searching dependent graphs…