Index: rails_plugins/templated_attribute/test/fixtures/user.rb =================================================================== --- rails_plugins/templated_attribute/test/fixtures/user.rb (revision 23) +++ rails_plugins/templated_attribute/test/fixtures/user.rb (revision 25) @@ -1,3 +1,10 @@ class User < ActiveRecord::Base + # Use mocked attributes so we don't have to hit the database + attr_accessor :favorite_books + attr_accessor :bio + + + templated_attribute :bio, :label => 'Tell us about yourself.' + end \ No newline at end of file