@@ -4,22 +4,22 @@ describe('caesar', function() {
4
4
it ( 'works with single letters' , function ( ) {
5
5
expect ( caesar ( 'A' , 1 ) ) . toEqual ( 'B' ) ;
6
6
} ) ;
7
- xit ( 'works with words' , function ( ) {
7
+ it ( 'works with words' , function ( ) {
8
8
expect ( caesar ( 'Aaa' , 1 ) ) . toEqual ( 'Bbb' ) ;
9
9
} ) ;
10
- xit ( 'works with phrases' , function ( ) {
10
+ it ( 'works with phrases' , function ( ) {
11
11
expect ( caesar ( 'Hello, World!' , 5 ) ) . toEqual ( 'Mjqqt, Btwqi!' ) ;
12
12
} ) ;
13
- xit ( 'works with negative shift' , function ( ) {
13
+ it ( 'works with negative shift' , function ( ) {
14
14
expect ( caesar ( 'Mjqqt, Btwqi!' , - 5 ) ) . toEqual ( 'Hello, World!' ) ;
15
15
} ) ;
16
- xit ( 'wraps' , function ( ) {
16
+ it ( 'wraps' , function ( ) {
17
17
expect ( caesar ( 'Z' , 1 ) ) . toEqual ( 'A' ) ;
18
18
} ) ;
19
- xit ( 'works with large shift factors' , function ( ) {
19
+ it ( 'works with large shift factors' , function ( ) {
20
20
expect ( caesar ( 'Hello, World!' , 75 ) ) . toEqual ( 'Ebiil, Tloia!' ) ;
21
21
} ) ;
22
- xit ( 'works with large negative shift factors' , function ( ) {
22
+ it ( 'works with large negative shift factors' , function ( ) {
23
23
expect ( caesar ( 'Hello, World!' , - 29 ) ) . toEqual ( 'Ebiil, Tloia!' ) ;
24
24
} ) ;
25
25
} ) ;
0 commit comments