3 var express
= require('../')
4 , request
= require('supertest');
6 describe('req', function(){
7 describe('.path', function(){
8 it('should return the parsed pathname', function(done
){
11 app
.use(function(req
, res
){
16 .get('/login?redirect=/post/1/comments')
17 .expect('/login', done
);