Code coverage report for lib/chars.js

Statements: 100% (4 / 4)      Branches: 100% (4 / 4)      Functions: 100% (2 / 2)      Lines: 100% (4 / 4)     

All files » lib/ » chars.js
1 2 3 4 5 6 7 8 9 10 11    1 4     1 4      
//Opening this on windows will likely bork the characters
 
exports.__defineGetter__('good', function() {
    return ((process.platform === 'win32') ? 'OK' : "✔");
});
 
exports.__defineGetter__('bad', function() {
    return ((process.platform === 'win32') ? 'X' : "✖");
});