1
1
//= require integration_test_helper
2
2
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 ( ) {
5
5
beforeEach ( function ( ) {
6
6
visit ( '/' ) . then ( function ( ) {
7
- click ( '.btn' ) ;
7
+ click ( '.btn' ) ;
8
8
} ) ;
9
9
} ) ;
10
10
11
11
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" ) ;
13
13
} ) ;
14
14
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
- ) ;
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
+ ) ;
35
35
36
36
fillIn ( '#firstName' , 'User' ) ;
37
- fillIn ( '#lastName' , 'Example' ) ;
38
- fillIn ( '#email' , '[email protected] ' ) ;
37
+ fillIn ( '#lastName' , 'Example' ) ;
38
+ fillIn ( '#email' , '[email protected] ' ) ;
39
39
click ( '.btn-primary' ) ;
40
- } ) ;
40
+ } ) ;
41
41
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
+ } ) ;
45
45
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
+ } ) ;
50
50
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
+ } ) ;
54
55
} ) ;
55
- } ) ;
56
56
} ) ;
57
- } ) ;
57
+ } ) ;
0 commit comments