turingschool-examples / ruby-exercises

A collection of exercises to practice various aspects of Ruby
MIT License
237 stars 767 forks source link

Incorrect test assertion answer in `mythical-creatures/spec/werewolf_spec.rb` on line 17 #134

Closed brandenge closed 1 year ago

brandenge commented 1 year ago

Per the test description on line 15: it 'is by default human' do and the other tests using the human? method, the test assertion on line 17 is incorrect.

expect(werewolf.human?).to be false

Should instead be:

expect(werewolf.human?).to be true