4b1a1da652
closes #553 Update test: application -> use() should throw if not a function Fix lint Use arrow function Refactor test using arrow function Remove non mandatory brackets fix for merge Fix: missing refactor after merge Use arrow function for old generator
30 lines
740 B
JavaScript
30 lines
740 B
JavaScript
|
|
'use strict';
|
|
|
|
const request = require('../helpers/context').request;
|
|
const assert = require('assert');
|
|
|
|
describe('req.charset', () => {
|
|
describe('with no content-type present', () => {
|
|
it('should return ""', () => {
|
|
const req = request();
|
|
assert('' === req.charset);
|
|
});
|
|
});
|
|
|
|
describe('with charset present', () => {
|
|
it('should return ""', () => {
|
|
const req = request();
|
|
req.header['content-type'] = 'text/plain';
|
|
assert('' === req.charset);
|
|
});
|
|
});
|
|
|
|
describe('with a charset', () => {
|
|
it('should return the charset', () => {
|
|
const req = request();
|
|
req.header['content-type'] = 'text/plain; charset=utf-8';
|
|
req.charset.should.equal('utf-8');
|
|
});
|
|
});
|
|
});
|