(something)
| 6146 | } |
| 6147 | } |
| 6148 | function inspect(something) { |
| 6149 | if (functionsHaveNames || !util.isFunction(something)) { |
| 6150 | return util.inspect(something); |
| 6151 | } |
| 6152 | var rawname = getName(something); |
| 6153 | var name = rawname ? ': ' + rawname : ''; |
| 6154 | return '[Function' + name + ']'; |
| 6155 | } |
| 6156 | function getMessage(self) { |
| 6157 | return truncate(inspect(self.actual), 128) + ' ' + self.operator + ' ' + truncate(inspect(self.expected), 128); |
| 6158 | } |
no test coverage detected