1
+ import SutClass from './graph' ;
2
+
3
+ describe ( 'formatDate' , ( ) => {
4
+ let tests = [
5
+ { name : 'epoch' , input : 1451606400000 , output : '01 Jan 2016' } ,
6
+ { name : 'string date' , input : '2016-01-01' , output : '01 Jan 2016' } ,
7
+ { name : 'an empty string with an empty string' , input : '' , output : '' } ,
8
+ { name : 'undefined value with an empty string' , input : undefined , output : '' } ,
9
+ { name : 'not a number (NaN) with an empty string' , input : NaN , output : '' }
10
+ ] ;
11
+
12
+ tests . forEach ( ( test ) => {
13
+ it ( 'correctly handles ' + test . name , ( ) => {
14
+ let sut = new SutClass ( ) ;
15
+ expect ( sut . formatDate ( test . input ) ) . toEqual ( test . output ) ;
16
+ sut = null ;
17
+ } ) ;
18
+ } ) ;
19
+ } ) ;
20
+
21
+ describe ( 'formatMonth' , ( ) => {
22
+ let tests = [
23
+ { name : 'month 0 (Jan)' , input : 0 , output : 'Jan' } ,
24
+ { name : 'month 1 (Feb)' , input : 1 , output : 'Feb' } ,
25
+ { name : 'month 2 (Mar)' , input : 2 , output : 'Mar' } ,
26
+ { name : 'month 3 (Apr)' , input : 3 , output : 'Apr' } ,
27
+ { name : 'month 4 (May)' , input : 4 , output : 'May' } ,
28
+ { name : 'month 5 (Jun)' , input : 5 , output : 'Jun' } ,
29
+ { name : 'month 6 (Jul)' , input : 6 , output : 'Jul' } ,
30
+ { name : 'month 7 (Aug)' , input : 7 , output : 'Aug' } ,
31
+ { name : 'month 8 (Sep)' , input : 8 , output : 'Sep' } ,
32
+ { name : 'month 9 (Oct)' , input : 9 , output : 'Oct' } ,
33
+ { name : 'month 10 (Nov)' , input : 10 , output : 'Nov' } ,
34
+ { name : 'month 11 (Dec)' , input : 11 , output : 'Dec' } ,
35
+ { name : 'not a number (NaN)' , input : NaN , output : '' } ,
36
+ { name : 'undefined' , input : undefined , output : '' }
37
+ ] ;
38
+
39
+ tests . forEach ( ( test ) => {
40
+ it ( 'correctly handles ' + test . name , ( ) => {
41
+ let sut = new SutClass ( ) ;
42
+ expect ( sut . formatMonth ( test . input ) ) . toEqual ( test . output ) ;
43
+ sut = null ;
44
+ } ) ;
45
+ } ) ;
46
+ } ) ;
0 commit comments