inital boilerplate checkin

This commit is contained in:
2016-04-13 17:07:23 -07:00
commit 252f72a948
8 changed files with 55 additions and 0 deletions

10
test/index.js Normal file
View File

@@ -0,0 +1,10 @@
import User from '../lib/index'
import expect from 'expect.js';
describe('User class', function () {
it('should return the name', function () {
var user = new User('test', 'user');
expect(user.getName()).to.equal('test user');
});
});