This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/vendor/plugins/shoulda/test/unit/post_test.rb
2008-03-02 16:04:34 -03:00

15 lines
395 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
class PostTest < Test::Unit::TestCase
load_all_fixtures
should_belong_to :user
should_belong_to :owner
should_have_many :tags, :through => :taggings
should_require_unique_attributes :title
should_require_attributes :body, :message => /wtf/
should_require_attributes :title
should_only_allow_numeric_values_for :user_id
end