Skip to content

Commit

Permalink
Implement solution for Assignment TheOdinProject#3 in 15a_binary_game…
Browse files Browse the repository at this point in the history
…_spec.rb
  • Loading branch information
ViperFangs committed Jul 10, 2022
1 parent e74dc09 commit 0ce16eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion spec/15a_binary_game_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,11 @@

# Write a test for the following context.
context 'when game minimum and maximum is 100 and 600' do
xit 'returns 9' do
subject(:game_six_hundred) { described_class.new(100, 600) }

it 'returns 9' do
max = game_six_hundred.maximum_guesses
expect(max).to eq(9)
end
end
end
Expand Down

0 comments on commit 0ce16eb

Please sign in to comment.