(done, expected)
| 6 | var undef = undefined; |
| 7 | |
| 8 | function checkValidation(done, expected) { |
| 9 | return function (returned) { |
| 10 | should.equal(returned, expected); |
| 11 | |
| 12 | return done(); |
| 13 | }; |
| 14 | } |
| 15 | |
| 16 | describe("Predefined Validators", function () { |
| 17 |
no outgoing calls
no test coverage detected