2013-04-30 13:49:02 +00:00
|
|
|
var assert = require('assert'),
|
2013-11-22 04:40:19 +00:00
|
|
|
chardet = require('../../');
|
2013-04-30 13:49:02 +00:00
|
|
|
|
|
|
|
describe('UTF-8', function() {
|
2013-11-22 04:40:19 +00:00
|
|
|
it('should return UTF-8', function() {
|
|
|
|
assert.equal(
|
|
|
|
chardet.detectFileSync(__dirname + '/../data/encodings/utf8'),
|
|
|
|
'UTF-8'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|