tests: add maxAge option tests for res.sendFile
[express.git] / test / res.status.js
blob8c173a645c5f0dbe787d4c5bc12a25453055f666
2 var express = require('../')
3   , request = require('supertest');
5 describe('res', function(){
6   describe('.status(code)', function(){
7     it('should set the response .statusCode', function(done){
8       var app = express();
10       app.use(function(req, res){
11         res.status(201).end('Created');
12       });
14       request(app)
15       .get('/')
16       .expect('Created')
17       .expect(201, done);
18     })
19   })