Function
shouldBeVal
(msg, val, expected)
Source from the content-addressed store, hash-verified
| 31 | } |
| 32 | |
| 33 | function shouldBeVal(msg, val, expected) { |
| 34 | if (val != expected) |
| 35 | testFailed(msg + ": value is " + val + " , not:" + expected); |
| 36 | else |
| 37 | testPassed(msg); |
| 38 | } |
| 39 | |
| 40 | f = "global"; |
| 41 | |