You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

11 lines
327 B

require File.dirname(__FILE__) + '/../test_helper'
class Pets::DogTest < Test::Unit::TestCase
should_belong_to :user
should_belong_to :address, :dependent => :destroy
should_have_many :treats
should_have_and_belong_to_many :fleas
should_require_attributes :treats, :fleas
should_validate_presence_of :owner_id
end