* 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
| 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
