Skip to content

Commit 9be89c3

Browse files
committed
Test formatting cleanup
1 parent 4610f2a commit 9be89c3

File tree

7 files changed

+46
-46
lines changed

7 files changed

+46
-46
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
11
//= require integration_test_helper
22

3-
describe("Adding a Contact", function() {
4-
describe("Given I click on the add contact button", function(){
3+
describe("Integration: Adding a Contact", function() {
4+
describe("Given I click on the add contact button", function(){
55
beforeEach(function(){
66
visit('/').then(function(){
7-
click('.btn');
7+
click('.btn');
88
});
99
});
1010

1111
it("should display the create contact form", function(){
12-
find('form legend').text().should.equal("Create Contact");
12+
assert.equal(find('form legend').text(), "Create Contact");
1313
});
1414

15-
describe('When I submit valid information', function(){
16-
beforeEach(function(){
17-
server.respondWith(
18-
"POST",
19-
"/contacts",
20-
[
21-
201,
22-
{ "Content-Type": "application/json" },
23-
JSON.stringify({
24-
"contact": {
25-
"id":25,
26-
"first_name":"User",
27-
"last_name":"Example",
28-
"email":"[email protected]",
29-
"notes":null,
30-
"phone_numbers":[]
31-
}
32-
})
33-
]
34-
);
15+
describe('When I submit valid information', function(){
16+
beforeEach(function(){
17+
server.respondWith(
18+
"POST",
19+
"/contacts",
20+
[
21+
201,
22+
{ "Content-Type": "application/json" },
23+
JSON.stringify({
24+
contact: {
25+
id: 25,
26+
first_name: "User",
27+
last_name: "Example",
28+
29+
notes: null,
30+
phone_numbers: []
31+
}
32+
})
33+
]
34+
);
3535

3636
fillIn('#firstName', 'User');
37-
fillIn('#lastName', 'Example');
38-
fillIn('#email' ,'[email protected]');
37+
fillIn('#lastName', 'Example');
38+
fillIn('#email' , '[email protected]');
3939
click('.btn-primary');
40-
});
40+
});
4141

42-
it("should display my name under the all contacts list", function(){
43-
find('.sidebar-nav a').text().should.equal("User Example");
44-
});
42+
it("should display my name under the all contacts list", function(){
43+
assert.equal(find('.sidebar-nav a').text(), "User Example");
44+
});
4545

46-
describe("And I click my name", function(){
47-
beforeEach(function(){
48-
click('.sidebar-nav a');
49-
});
46+
describe("And I click my name", function(){
47+
beforeEach(function(){
48+
click('.sidebar-nav a');
49+
});
5050

51-
it("should be on my profile page", function(){
52-
find('h2').text().should.equal("User Example");
53-
});
51+
it("should be on my profile page", function(){
52+
assert.equal(find('h2').text(), "User Example");
53+
});
54+
});
5455
});
55-
});
5656
});
57-
});
57+
});
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//= require test_helper
22

3-
describe("App.ContactController", function() {
3+
describe("Controllers: App.ContactController", function() {
44
// TODO - fill out tests
5-
});
5+
});

test/javascripts/unit/controllers/contacts_controller_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//= require test_helper
22

3-
describe("App.ContactsController", function() {
3+
describe("Controllers: App.ContactsController", function() {
44
var controller,
55
store;
66

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//= require test_helper
22

3-
describe("App.ContactEditController", function() {
3+
describe("Controllers: App.ContactEditController", function() {
44
// TODO - fill out tests
55
});

test/javascripts/unit/helpers/forms_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//= require test_helper
22

3-
describe("Handlebars", function() {
3+
describe("Helpers", function() {
44
var view;
55

66
describe("submitButton", function() {

test/javascripts/unit/models/contact_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//= require test_helper
22

3-
describe("Models.App.Contact", function() {
3+
describe("Models: App.Contact", function() {
44
var store, contact;
55

66
beforeEach(function() {

test/javascripts/unit/store_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//= require test_helper
22
//= require store
33

4-
describe("App.Store", function() {
4+
describe("Data: App.Store", function() {
55
var store;
66

77
beforeEach(function() {

0 commit comments

Comments
 (0)