Closed brandenge closed 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.
it 'is by default human' do
human?
expect(werewolf.human?).to be false
Should instead be:
expect(werewolf.human?).to be true
Per the test description on line 15:
it 'is by default human' do
and the other tests using thehuman?
method, the test assertion on line 17 is incorrect.expect(werewolf.human?).to be false
Should instead be:
expect(werewolf.human?).to be true