I think this test should pass but it doesn't<br><br>1)<br>NoMethodError in 'Person should return full name'<br>undefined method `full_name?' for #<Person:0x3567964><br>./spec/models/person_spec.rb:43:
<br><br>describe Person do <br> it "should return full name" do<br> person = Person.new <br> person.should be_full_name<br> end<br>end<br><br>class Person < ActiveRecord::Base<br> def full_name<br> true
<br> end<br>end<br>