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/gems/thoughtbot-shoulda-2.10.1/test/unit/dog_test.rb

11 lines
327 B
Ruby

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