3 module.exports = function (t, a) {
4 a.deep(t.call(function (a, b) { return this[a] + this[b]; }),
5 { args: 'a, b', body: ' return this[a] + this[b]; ' });
6 a.deep(t.call(function () {}),
7 { args: '', body: '' });
8 a.deep(t.call(function (raz) {}),
9 { args: 'raz', body: '' });
10 a.deep(t.call(function () { Object(); }),
11 { args: '', body: ' Object(); ' });