(module, func)
| 32 | } |
| 33 | |
| 34 | function assertFunction(module, func) { |
| 35 | assertEquals("object", typeof module.exports); |
| 36 | |
| 37 | var exp = module.exports[func]; |
| 38 | assertFalse(exp === undefined); |
| 39 | assertFalse(exp === null); |
| 40 | assertFalse(exp === 0); |
| 41 | assertEquals("function", typeof exp); |
| 42 | return exp; |
| 43 | } |
| 44 | |
| 45 | (function CompileFunctionsTest() { |
| 46 |
no test coverage detected
searching dependent graphs…