Skip to content

Commit

Permalink
Tests completed
Browse files Browse the repository at this point in the history
  • Loading branch information
jessbealey88 committed May 3, 2023
1 parent f22d56f commit 5f66b4a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions spec/fizzbuzz_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,13 @@
it 'returns "fizz" when passed 3' do
expect(fizzbuzz(3)).to eq 'fizz'
end
it 'returns "buzz" when passed 5' do
expect(fizzbuzz(35)).to eq 'buzz'
end
it 'returns "fizzbuzz" when passed 15' do
expect(fizzbuzz(15)).to eq 'fizzbuzz'
end
it 'returns 7 when passed 7' do
expect(fizzbuzz(7)).to eq 7
end
end

0 comments on commit 5f66b4a

Please sign in to comment.