From e6300a6e70e48fa6e6915372f18473a5035336d7 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Wed, 5 Mar 2014 15:37:21 -0500 Subject: [PATCH] Dropped _test postfix from test files --- test/{app_test.js => app.js} | 0 test/{user_test.js => models.js} | 4 +++- 2 files changed, 3 insertions(+), 1 deletion(-) rename test/{app_test.js => app.js} (100%) rename test/{user_test.js => models.js} (95%) diff --git a/test/app_test.js b/test/app.js similarity index 100% rename from test/app_test.js rename to test/app.js diff --git a/test/user_test.js b/test/models.js similarity index 95% rename from test/user_test.js rename to test/models.js index 9f83778e19..25decf1be7 100644 --- a/test/user_test.js +++ b/test/models.js @@ -2,7 +2,9 @@ var chai = require('chai'); var should = chai.should(); var User = require('../models/User'); -describe('User attributes', function() { +describe('Users', function() { + + before(function(done) { user = new User({ email: 'janedoe@gmail.com',