From 2d7d22f8478a402bdaf3458c33f0f3d17c95c9ee Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 5 Nov 2015 17:42:50 -0700 Subject: [PATCH] Set up preliminary tests for users --- app/mirage/config.js | 3 + app/pods/protected/users/index/template.hbs | 2 +- .../protected/users/user-form/template.hbs | 4 +- app/pods/users/new/template.hbs | 10 +-- tests/acceptance/users-test.js | 77 +++++++++++++++++++ 5 files changed, 88 insertions(+), 8 deletions(-) create mode 100644 tests/acceptance/users-test.js diff --git a/app/mirage/config.js b/app/mirage/config.js index 929ea8a..c03b469 100644 --- a/app/mirage/config.js +++ b/app/mirage/config.js @@ -10,7 +10,10 @@ export function testConfig() { this.namespace = '/api/hymenobacter'; this.timing = 0; + this.get('/users'); + this.post('/users'); this.get('/users/:id'); + this.put('/users/:id'); this.get('/species'); this.post('/species'); diff --git a/app/pods/protected/users/index/template.hbs b/app/pods/protected/users/index/template.hbs index adb5b55..5354e95 100644 --- a/app/pods/protected/users/index/template.hbs +++ b/app/pods/protected/users/index/template.hbs @@ -1,5 +1,5 @@

{{genus-name}} Users

-

Total users: {{model.length}}

+

Total users: {{model.length}}

diff --git a/app/pods/protected/users/user-form/template.hbs b/app/pods/protected/users/user-form/template.hbs index c6209a9..e7a8b02 100644 --- a/app/pods/protected/users/user-form/template.hbs +++ b/app/pods/protected/users/user-form/template.hbs @@ -4,7 +4,7 @@
- {{input value=user.name}} + {{input value=user.name class="user-name"}}
@@ -33,7 +33,7 @@ Cancel {{#if user.hasDirtyAttributes}} - {{/if}} diff --git a/app/pods/users/new/template.hbs b/app/pods/users/new/template.hbs index d6e81c5..e8e6e2c 100644 --- a/app/pods/users/new/template.hbs +++ b/app/pods/users/new/template.hbs @@ -6,22 +6,22 @@