avatar

25

* Put attributes in fixture to be more DRY * Add assert_tag_innerHTML and assert_tag_contains to do lightweight regex-based output checking * Add testing framework and beginnings of tests for FormHelper additions by chrisk, 29 Jul, 2007 12:46 AM
Diff this changeset:
user.rb
      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