(value)
| 80 | |
| 81 | t.test('called as a constructor', function (st) { |
| 82 | var thunkify = function (value) { |
| 83 | return function () { return value; }; |
| 84 | }; |
| 85 | st.test('returns object value', function (sst) { |
| 86 | var expectedReturnValue = [1, 2, 3]; |
| 87 | var Constructor = functionBind.call(thunkify(expectedReturnValue), null); |
no outgoing calls
no test coverage detected
searching dependent graphs…