0b1b49cb8a
closes #508
17 lines
556 B
JavaScript
17 lines
556 B
JavaScript
|
|
'use strict';
|
|
|
|
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.req.headers.referer = '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');
|
|
ctx.get('referer').should.equal('http://google.com');
|
|
ctx.get('referrer').should.equal('http://google.com');
|
|
})
|
|
})
|