Skip to content

Commit

Permalink
Update pending status
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras authored Dec 25, 2023
1 parent e614189 commit c3f1eeb
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions exercises/practice/raindrops/raindrops.spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -9,103 +9,103 @@ describe 'Raindrops', ->
expected = '1'
expect(results).toEqual expected

it 'the sound for 3 is Pling', ->
xit 'the sound for 3 is Pling', ->
number = 3
results = raindrops.convert(number)
expected = 'Pling'
expect(results).toEqual expected

it 'the sound for 5 is Plang', ->
xit 'the sound for 5 is Plang', ->
number = 5
results = raindrops.convert(number)
expected = 'Plang'
expect(results).toEqual expected

it 'the sound for 7 is Plong', ->
xit 'the sound for 7 is Plong', ->
number = 7
results = raindrops.convert(number)
expected = 'Plong'
expect(results).toEqual expected

it 'the sound for 6 is Pling as it has a factor 3', ->
xit 'the sound for 6 is Pling as it has a factor 3', ->
number = 6
results = raindrops.convert(number)
expected = 'Pling'
expect(results).toEqual expected

it '2 to the power 3 does not make a raindrop sound as 3 is the exponent not the base', ->
xit '2 to the power 3 does not make a raindrop sound as 3 is the exponent not the base', ->
number = 8
results = raindrops.convert(number)
expected = '8'
expect(results).toEqual expected

it 'the sound for 9 is Pling as it has a factor 3', ->
xit 'the sound for 9 is Pling as it has a factor 3', ->
number = 9
results = raindrops.convert(number)
expected = 'Pling'
expect(results).toEqual expected

it 'the sound for 10 is Plang as it has a factor 5', ->
xit 'the sound for 10 is Plang as it has a factor 5', ->
number = 10
results = raindrops.convert(number)
expected = 'Plang'
expect(results).toEqual expected

it 'the sound for 14 is Plong as it has a factor of 7', ->
xit 'the sound for 14 is Plong as it has a factor of 7', ->
number = 14
results = raindrops.convert(number)
expected = 'Plong'
expect(results).toEqual expected

it 'the sound for 15 is PlingPlang as it has factors 3 and 5', ->
xit 'the sound for 15 is PlingPlang as it has factors 3 and 5', ->
number = 15
results = raindrops.convert(number)
expected = 'PlingPlang'
expect(results).toEqual expected

it 'the sound for 21 is PlingPlong as it has factors 3 and 7', ->
xit 'the sound for 21 is PlingPlong as it has factors 3 and 7', ->
number = 21
results = raindrops.convert(number)
expected = 'PlingPlong'
expect(results).toEqual expected

it 'the sound for 25 is Plang as it has a factor 5', ->
xit 'the sound for 25 is Plang as it has a factor 5', ->
number = 25
results = raindrops.convert(number)
expected = 'Plang'
expect(results).toEqual expected

it 'the sound for 27 is Pling as it has a factor 3', ->
xit 'the sound for 27 is Pling as it has a factor 3', ->
number = 27
results = raindrops.convert(number)
expected = 'Pling'
expect(results).toEqual expected

it 'the sound for 35 is PlangPlong as it has factors 5 and 7', ->
xit 'the sound for 35 is PlangPlong as it has factors 5 and 7', ->
number = 35
results = raindrops.convert(number)
expected = 'PlangPlong'
expect(results).toEqual expected

it 'the sound for 49 is Plong as it has a factor 7', ->
xit 'the sound for 49 is Plong as it has a factor 7', ->
number = 49
results = raindrops.convert(number)
expected = 'Plong'
expect(results).toEqual expected

it 'the sound for 52 is 52', ->
xit 'the sound for 52 is 52', ->
number = 52
results = raindrops.convert(number)
expected = '52'
expect(results).toEqual expected

it 'the sound for 105 is PlingPlangPlong as it has factors 3, 5 and 7', ->
xit 'the sound for 105 is PlingPlangPlong as it has factors 3, 5 and 7', ->
number = 105
results = raindrops.convert(number)
expected = 'PlingPlangPlong'
expect(results).toEqual expected

it 'the sound for 3125 is Plang as it has a factor 5', ->
xit 'the sound for 3125 is Plang as it has a factor 5', ->
number = 3125
results = raindrops.convert(number)
expected = 'Plang'
Expand Down

0 comments on commit c3f1eeb

Please sign in to comment.