@@ -5,71 +5,71 @@ describe('raindrops', function()
55 assert .equal (' 1' , raindrops (1 ))
66 end )
77
8- it (' the sound for 3 is Pling ' , function ()
8+ it (' the sound for 3 is pling ' , function ()
99 assert .equal (' Pling' , raindrops (3 ))
1010 end )
1111
12- it (' the sound for 5 is Plang ' , function ()
12+ it (' the sound for 5 is plang ' , function ()
1313 assert .equal (' Plang' , raindrops (5 ))
1414 end )
1515
16- it (' the sound for 7 is Plong ' , function ()
16+ it (' the sound for 7 is plong ' , function ()
1717 assert .equal (' Plong' , raindrops (7 ))
1818 end )
1919
20- it (' the sound for 6 is Pling as it has a factor 3' , function ()
20+ it (' the sound for 6 is pling as it has a factor 3' , function ()
2121 assert .equal (' Pling' , raindrops (6 ))
2222 end )
2323
2424 it (' 2 to the power 3 does not make a raindrop sound as 3 is the exponent not the base' , function ()
2525 assert .equal (' 8' , raindrops (8 ))
2626 end )
2727
28- it (' the sound for 9 is Pling as it has a factor 3' , function ()
28+ it (' the sound for 9 is pling as it has a factor 3' , function ()
2929 assert .equal (' Pling' , raindrops (9 ))
3030 end )
3131
32- it (' the sound for 10 is Plang as it has a factor 5' , function ()
32+ it (' the sound for 10 is plang as it has a factor 5' , function ()
3333 assert .equal (' Plang' , raindrops (10 ))
3434 end )
3535
36- it (' the sound for 14 is Plong as it has a factor 7' , function ()
36+ it (' the sound for 14 is plong as it has a factor of 7' , function ()
3737 assert .equal (' Plong' , raindrops (14 ))
3838 end )
3939
40- it (' the sound for 15 is PlingPlang as it has a factor 3 and 5' , function ()
40+ it (' the sound for 15 is plingplang as it has factors 3 and 5' , function ()
4141 assert .equal (' PlingPlang' , raindrops (15 ))
4242 end )
4343
44- it (' the sound for 21 is PlingPlong as it has factors 3 and 7' , function ()
44+ it (' the sound for 21 is plingplong as it has factors 3 and 7' , function ()
4545 assert .equal (' PlingPlong' , raindrops (21 ))
4646 end )
4747
48- it (' the sound for 25 is Plang as it has a factor 5' , function ()
48+ it (' the sound for 25 is plang as it has a factor 5' , function ()
4949 assert .equal (' Plang' , raindrops (25 ))
5050 end )
5151
52- it (' the sound for 27 is Pling as it has a factor 3' , function ()
52+ it (' the sound for 27 is pling as it has a factor 3' , function ()
5353 assert .equal (' Pling' , raindrops (27 ))
5454 end )
5555
56- it (' the sound for 35 is PlangPlong as it has factors 5 and 7' , function ()
56+ it (' the sound for 35 is plangplong as it has factors 5 and 7' , function ()
5757 assert .equal (' PlangPlong' , raindrops (35 ))
5858 end )
5959
60- it (' the sound for 49 is Plong as it has a factor 7' , function ()
60+ it (' the sound for 49 is plong as it has a factor 7' , function ()
6161 assert .equal (' Plong' , raindrops (49 ))
6262 end )
6363
6464 it (' the sound for 52 is 52' , function ()
6565 assert .equal (' 52' , raindrops (52 ))
6666 end )
6767
68- it (' the sound for 105 is PlingPlangPlong as it has factors 3, 5 and 7' , function ()
68+ it (' the sound for 105 is plingplangplong as it has factors 3, 5 and 7' , function ()
6969 assert .equal (' PlingPlangPlong' , raindrops (105 ))
7070 end )
7171
72- it (' the sound for 3125 is Plang as it has a factor 5' , function ()
72+ it (' the sound for 3125 is plang as it has a factor 5' , function ()
7373 assert .equal (' Plang' , raindrops (3125 ))
7474 end )
7575end )
0 commit comments