twitter.get('https://api.twitter.com/1.1/statuses/user_timeline.json', function(err, tweets) {
                
                expect(tweets).to.be.an('array').that.have.length(20);
                expect(tweets[0]).to.have.property('id');
                expect(tweets[0]).to.have.property('created_at');