12 lines
372 B
JavaScript
12 lines
372 B
JavaScript
|
|
||
|
var context = require('../context');
|
||
|
|
||
|
describe('ctx.get(name)', function(){
|
||
|
it('should return the field value', function(){
|
||
|
var ctx = context();
|
||
|
ctx.req.headers.host = 'http://google.com';
|
||
|
ctx.get('HOST').should.equal('http://google.com');
|
||
|
ctx.get('Host').should.equal('http://google.com');
|
||
|
ctx.get('host').should.equal('http://google.com');
|
||
|
})
|
||
|
})
|