Skip to content

Commit

Permalink
Update tests to be pending
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras authored Dec 25, 2023
1 parent 2ea62e7 commit 3af991e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions exercises/practice/bottle-song/bottle-song.spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe 'BottleSong', ->
]
expect(result).toEqual expected

it 'last generic verse', ->
xit 'last generic verse', ->
result = bottleSong.recite(3, 1)
expected = [
"Three green bottles hanging on the wall,",
Expand All @@ -22,7 +22,7 @@ describe 'BottleSong', ->
]
expect(result).toEqual expected

it 'verse with 2 bottles', ->
xit 'verse with 2 bottles', ->
result = bottleSong.recite(2, 1)
expected = [
"Two green bottles hanging on the wall,",
Expand All @@ -32,7 +32,7 @@ describe 'BottleSong', ->
]
expect(result).toEqual expected

it 'verse with 1 bottle', ->
xit 'verse with 1 bottle', ->
result = bottleSong.recite(1, 1)
expected = [
"One green bottle hanging on the wall,",
Expand All @@ -42,7 +42,7 @@ describe 'BottleSong', ->
]
expect(result).toEqual expected

it 'first two verses', ->
xit 'first two verses', ->
result = bottleSong.recite(10, 2)
expected = [
"Ten green bottles hanging on the wall,",
Expand All @@ -57,7 +57,7 @@ describe 'BottleSong', ->
]
expect(result).toEqual expected

it 'last three verses', ->
xit 'last three verses', ->
result = bottleSong.recite(3, 3)
expected = [
"Three green bottles hanging on the wall,",
Expand All @@ -77,7 +77,7 @@ describe 'BottleSong', ->
]
expect(result).toEqual expected

it 'all verses', ->
xit 'all verses', ->
result = bottleSong.recite(10, 10)
expected = [
"Ten green bottles hanging on the wall,",
Expand Down

0 comments on commit 3af991e

Please sign in to comment.