Assume that I have these models:
class Person < ActiveRecord::Base
end
class Bob < Person
def name
'Bob'
end
end
class John < Person
def name
'John'
end
end
This code works well:
# in controller:
@persons = Person.all
# in view:
- @persons.each do |person|
%p= person.name
But in my spec file I get error when I write something like this:
it "display person names" do
Bob.create!
@person = Person.all.first
print @person.name # Error: undefined method 'name' for #<Person:0x...>
end
But this code works fine:
it "display person names" do
Bob.create!
@person = Bob.all.first
print @person.name
end
What do I do wrong?
P.S. The problem is only in RSpec files. The same code in controllers works well.
UPDATE: the solution is found! I should run "rake db:migrate RAILS_ENV=test" (last migration "add_type_to_person" was applied only to development database")